diff --git a/pep-0407.txt b/pep-0407.txt index f4f136173..043b8bc41 100644 --- a/pep-0407.txt +++ b/pep-0407.txt @@ -5,7 +5,7 @@ Last-Modified: $Date$ Author: Antoine Pitrou , Georg Brandl , Barry Warsaw -Status: Draft +Status: Deferred Type: Process Content-Type: text/x-rst Created: 2012-01-12 diff --git a/pep-0413.txt b/pep-0413.txt index d0487e73a..f3702e8b8 100644 --- a/pep-0413.txt +++ b/pep-0413.txt @@ -3,7 +3,7 @@ Title: Faster evolution of the Python Standard Library Version: $Revision$ Last-Modified: $Date$ Author: Nick Coghlan -Status: Draft +Status: Deferred Type: Process Content-Type: text/x-rst Created: 2012-02-24 diff --git a/pep0/output.py b/pep0/output.py index 6ec1df0fe..f2ad2adb8 100644 --- a/pep0/output.py +++ b/pep0/output.py @@ -38,6 +38,8 @@ def sort_peps(peps): # over Type value, and vice-versa. if pep.status == 'Draft': open_.append(pep) + elif pep.status == 'Deferred': + deferred.append(pep) elif pep.type_ == 'Process': if pep.status == "Active": meta.append(pep) @@ -45,8 +47,6 @@ def sort_peps(peps): dead.append(pep) else: historical.append(pep) - elif pep.status == 'Deferred': - deferred.append(pep) elif pep.status in ('Rejected', 'Withdrawn', 'Incomplete', 'Superseded'): dead.append(pep)