Skip to content

Commit 1309e29

Browse files
committed
Meta: Group Accepted Meta-PEPs with Active, not historical
1 parent c399171 commit 1309e29

File tree

1 file changed

+1
-1
lines changed
  • pep_sphinx_extensions/pep_zero_generator

1 file changed

+1
-1
lines changed

pep_sphinx_extensions/pep_zero_generator/writer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ def _classify_peps(peps: list[PEP]) -> tuple[list[PEP], ...]:
222222
elif pep.status == STATUS_DEFERRED:
223223
deferred.append(pep)
224224
elif pep.pep_type == TYPE_PROCESS:
225-
if pep.status == STATUS_ACTIVE:
225+
if pep.status in {STATUS_ACCEPTED, STATUS_ACTIVE}:
226226
meta.append(pep)
227227
elif pep.status in {STATUS_WITHDRAWN, STATUS_REJECTED}:
228228
dead.append(pep)

0 commit comments

Comments
 (0)