Defer both PEPs about speeding up the release cycle
This commit is contained in:
parent
c70a54e10d
commit
fe6fef343c
|
@ -5,7 +5,7 @@ Last-Modified: $Date$
|
|||
Author: Antoine Pitrou <solipsis@pitrou.net>,
|
||||
Georg Brandl <georg@python.org>,
|
||||
Barry Warsaw <barry@python.org>
|
||||
Status: Draft
|
||||
Status: Deferred
|
||||
Type: Process
|
||||
Content-Type: text/x-rst
|
||||
Created: 2012-01-12
|
||||
|
|
|
@ -3,7 +3,7 @@ Title: Faster evolution of the Python Standard Library
|
|||
Version: $Revision$
|
||||
Last-Modified: $Date$
|
||||
Author: Nick Coghlan <ncoghlan@gmail.com>
|
||||
Status: Draft
|
||||
Status: Deferred
|
||||
Type: Process
|
||||
Content-Type: text/x-rst
|
||||
Created: 2012-02-24
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue