Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Meta: Classify Accepted Process PEPs as non-historical & mark PEP 8001 Final #2385

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pep-8001.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Author: Brett Cannon <brett@python.org>,
Tal Einat <tal@python.org>,
Tim Peters <tim.peters@gmail.com>,
Zachary Ware <zachary.ware@gmail.com>
Status: Accepted
Status: Final
Type: Process
Content-Type: text/x-rst
Created: 24-Aug-2018
Expand Down
2 changes: 1 addition & 1 deletion pep_sphinx_extensions/pep_zero_generator/writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ def _classify_peps(peps: list[PEP]) -> tuple[list[PEP], ...]:
elif pep.status == STATUS_DEFERRED:
deferred.append(pep)
elif pep.pep_type == TYPE_PROCESS:
if pep.status == STATUS_ACTIVE:
if pep.status in {STATUS_ACCEPTED, STATUS_ACTIVE}:
meta.append(pep)
elif pep.status in {STATUS_WITHDRAWN, STATUS_REJECTED}:
dead.append(pep)
Expand Down