[Python-checkins] peps: Defer both PEPs about speeding up the release cycle

nick.coghlan python-checkins at python.org
Fri Oct 19 16:28:24 CEST 2012


http://hg.python.org/peps/rev/d468852fb850
changeset:   4559:d468852fb850
user:        Nick Coghlan <ncoghlan at gmail.com>
date:        Sat Oct 20 00:28:15 2012 +1000
summary:
  Defer both PEPs about speeding up the release cycle

files:
  pep-0407.txt   |  2 +-
  pep-0413.txt   |  2 +-
  pep0/output.py |  4 ++--
  3 files changed, 4 insertions(+), 4 deletions(-)


diff --git a/pep-0407.txt b/pep-0407.txt
--- a/pep-0407.txt
+++ b/pep-0407.txt
@@ -5,7 +5,7 @@
 Author: Antoine Pitrou <solipsis at pitrou.net>,
         Georg Brandl <georg at python.org>,
         Barry Warsaw <barry at python.org>
-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
--- a/pep-0413.txt
+++ b/pep-0413.txt
@@ -3,7 +3,7 @@
 Version: $Revision$
 Last-Modified: $Date$
 Author: Nick Coghlan <ncoghlan at gmail.com>
-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
--- a/pep0/output.py
+++ b/pep0/output.py
@@ -38,6 +38,8 @@
         # 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 @@
                 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)

-- 
Repository URL: http://hg.python.org/peps


More information about the Python-checkins mailing list