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>,
|
Author: Antoine Pitrou <solipsis@pitrou.net>,
|
||||||
Georg Brandl <georg@python.org>,
|
Georg Brandl <georg@python.org>,
|
||||||
Barry Warsaw <barry@python.org>
|
Barry Warsaw <barry@python.org>
|
||||||
Status: Draft
|
Status: Deferred
|
||||||
Type: Process
|
Type: Process
|
||||||
Content-Type: text/x-rst
|
Content-Type: text/x-rst
|
||||||
Created: 2012-01-12
|
Created: 2012-01-12
|
||||||
|
|
|
@ -3,7 +3,7 @@ Title: Faster evolution of the Python Standard Library
|
||||||
Version: $Revision$
|
Version: $Revision$
|
||||||
Last-Modified: $Date$
|
Last-Modified: $Date$
|
||||||
Author: Nick Coghlan <ncoghlan@gmail.com>
|
Author: Nick Coghlan <ncoghlan@gmail.com>
|
||||||
Status: Draft
|
Status: Deferred
|
||||||
Type: Process
|
Type: Process
|
||||||
Content-Type: text/x-rst
|
Content-Type: text/x-rst
|
||||||
Created: 2012-02-24
|
Created: 2012-02-24
|
||||||
|
|
|
@ -38,6 +38,8 @@ def sort_peps(peps):
|
||||||
# over Type value, and vice-versa.
|
# over Type value, and vice-versa.
|
||||||
if pep.status == 'Draft':
|
if pep.status == 'Draft':
|
||||||
open_.append(pep)
|
open_.append(pep)
|
||||||
|
elif pep.status == 'Deferred':
|
||||||
|
deferred.append(pep)
|
||||||
elif pep.type_ == 'Process':
|
elif pep.type_ == 'Process':
|
||||||
if pep.status == "Active":
|
if pep.status == "Active":
|
||||||
meta.append(pep)
|
meta.append(pep)
|
||||||
|
@ -45,8 +47,6 @@ def sort_peps(peps):
|
||||||
dead.append(pep)
|
dead.append(pep)
|
||||||
else:
|
else:
|
||||||
historical.append(pep)
|
historical.append(pep)
|
||||||
elif pep.status == 'Deferred':
|
|
||||||
deferred.append(pep)
|
|
||||||
elif pep.status in ('Rejected', 'Withdrawn',
|
elif pep.status in ('Rejected', 'Withdrawn',
|
||||||
'Incomplete', 'Superseded'):
|
'Incomplete', 'Superseded'):
|
||||||
dead.append(pep)
|
dead.append(pep)
|
||||||
|
|
Loading…
Reference in New Issue