Meta: Classify Accepted Process PEPs as current; PEP 8001: Mark as Final (#2385)
This commit is contained in:
parent
54d8f01d5a
commit
ce2ef0473e
|
@ -13,7 +13,7 @@ Author: Brett Cannon <brett@python.org>,
|
||||||
Tal Einat <tal@python.org>,
|
Tal Einat <tal@python.org>,
|
||||||
Tim Peters <tim.peters@gmail.com>,
|
Tim Peters <tim.peters@gmail.com>,
|
||||||
Zachary Ware <zachary.ware@gmail.com>
|
Zachary Ware <zachary.ware@gmail.com>
|
||||||
Status: Accepted
|
Status: Final
|
||||||
Type: Process
|
Type: Process
|
||||||
Content-Type: text/x-rst
|
Content-Type: text/x-rst
|
||||||
Created: 24-Aug-2018
|
Created: 24-Aug-2018
|
||||||
|
|
|
@ -222,7 +222,7 @@ def _classify_peps(peps: list[PEP]) -> tuple[list[PEP], ...]:
|
||||||
elif pep.status == STATUS_DEFERRED:
|
elif pep.status == STATUS_DEFERRED:
|
||||||
deferred.append(pep)
|
deferred.append(pep)
|
||||||
elif pep.pep_type == TYPE_PROCESS:
|
elif pep.pep_type == TYPE_PROCESS:
|
||||||
if pep.status == STATUS_ACTIVE:
|
if pep.status in {STATUS_ACCEPTED, STATUS_ACTIVE}:
|
||||||
meta.append(pep)
|
meta.append(pep)
|
||||||
elif pep.status in {STATUS_WITHDRAWN, STATUS_REJECTED}:
|
elif pep.status in {STATUS_WITHDRAWN, STATUS_REJECTED}:
|
||||||
dead.append(pep)
|
dead.append(pep)
|
||||||
|
|
Loading…
Reference in New Issue