[Python-checkins] r55566 - peps/trunk/pep-0000.txt peps/trunk/pep-3119.txt peps/trunk/pep-3133.txt

guido.van.rossum python-checkins at python.org
Fri May 25 02:01:48 CEST 2007


Author: guido.van.rossum
Date: Fri May 25 02:01:46 2007
New Revision: 55566

Modified:
   peps/trunk/pep-0000.txt
   peps/trunk/pep-3119.txt
   peps/trunk/pep-3133.txt
Log:
Accepting PEP 3119, rejecting its competitor PEP 3133.


Modified: peps/trunk/pep-0000.txt
==============================================================================
--- peps/trunk/pep-0000.txt	(original)
+++ peps/trunk/pep-0000.txt	Fri May 25 02:01:46 2007
@@ -80,6 +80,7 @@
  SA 3111  Simple input built-in in Python 3000         Roberge
  SA 3112  Bytes literals in Python 3000                Orendorff
  SA 3115  Metaclasses in Python 3000                   Talin
+ SA 3119  Introducing Abstract Base Classes            GvR, Talin
  SA 3120  Using UTF-8 as the default source encoding   von Löwis
  SA 3121  Extension Module Initialization & Finalization  von Löwis
  SA 3123  Making PyObject_HEAD conform to standard C   von Löwis
@@ -102,9 +103,7 @@
  S  3108  Standard Library Reorganization              Cannon
  S  3116  New I/O                                      Stutzbach, Verdone, GvR
  S  3118  Revising the buffer protocol                 Oliphant, Banks
- S  3119  Introducing Abstract Base Classes            GvR, Talin
  S  3124  Overloading, Generic Functions, Interfaces   Eby
- S  3133  Introducing Roles                            Winter
  S  3141  A Type Hierarchy for Numbers                 Yasskin
 
  Finished PEPs (done, implemented in Subversion)
@@ -270,6 +269,7 @@
  SR 3126  Remove Implicit String Concatenation         Jewett
  SR 3128  BList: A Faster List-like Type               Stutzbach
  SR 3130  Access to Current Module/Class/Function      Jewett
+ SR 3133  Introducing Roles                            Winter
 
 
 Numerical Index
@@ -489,7 +489,7 @@
  S  3116  New I/O                                      Stutzbach, Verdone, GvR
  SR 3117  Postfix Type Declarations                    Brandl
  S  3118  Revising the buffer protocol                 Oliphant, Banks
- S  3119  Introducing Abstract Base Classes            GvR, Talin
+ SA 3119  Introducing Abstract Base Classes            GvR, Talin
  SA 3120  Using UTF-8 as the default source encoding   von Löwis
  SA 3121  Extension Module Initialization & Finalization  von Löwis
  SR 3122  Delineation of the main module               Cannon
@@ -503,7 +503,7 @@
  SR 3130  Access to Current Module/Class/Function      Jewett
  SA 3131  Supporting Non-ASCII Identifiers             von Löwis
  SF 3132  Extended Iterable Unpacking                  Brandl
- S  3133  Introducing Roles                            Winter
+ SR 3133  Introducing Roles                            Winter
  S  3141  A Type Hierarchy for Numbers                 Yasskin
 
 

Modified: peps/trunk/pep-3119.txt
==============================================================================
--- peps/trunk/pep-3119.txt	(original)
+++ peps/trunk/pep-3119.txt	Fri May 25 02:01:46 2007
@@ -3,7 +3,7 @@
 Version: $Revision$
 Last-Modified: $Date$
 Author: Guido van Rossum <guido at python.org>, Talin <talin at acm.org>
-Status: Draft
+Status: Accepted
 Type: Standards Track
 Content-Type: text/x-rst
 Created: 18-Apr-2007

Modified: peps/trunk/pep-3133.txt
==============================================================================
--- peps/trunk/pep-3133.txt	(original)
+++ peps/trunk/pep-3133.txt	Fri May 25 02:01:46 2007
@@ -3,7 +3,7 @@
 Version: $Revision$
 Last-Modified: $Date$
 Author: Collin Winter <collinw at gmail.com>
-Status: Draft
+Status: Rejected
 Type: Standards Track
 Requires: 3115, 3129
 Content-Type: text/x-rst
@@ -12,6 +12,14 @@
 Post-History: 13-May-2007
 
 
+Rejection Notice
+================
+
+This PEP has helped push PEP 3119 towards a saner, more minimalistic
+approach.  But given the latest version of PEP 3119 I much prefer
+that.  GvR.
+
+
 Abstract
 ========
 


More information about the Python-checkins mailing list