[Python-checkins] r55236 - peps/trunk/pep-0000.txt peps/trunk/pep-3127.txt peps/trunk/pep-3130.txt

guido.van.rossum python-checkins at python.org
Fri May 11 00:56:50 CEST 2007


Author: guido.van.rossum
Date: Fri May 11 00:56:48 2007
New Revision: 55236

Modified:
   peps/trunk/pep-0000.txt
   peps/trunk/pep-3127.txt
   peps/trunk/pep-3130.txt
Log:
Accept PEP 3127 (integer literal and support) and reject PEP 3130 (access
to current module/class/function).


Modified: peps/trunk/pep-0000.txt
==============================================================================
--- peps/trunk/pep-0000.txt	(original)
+++ peps/trunk/pep-0000.txt	Fri May 11 00:56:48 2007
@@ -84,6 +84,7 @@
  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
+ SA 3127  Integer Literal Support and Syntax           Maupin
  SA 3129  Class Decorators                             Winter
 
  Open PEPs (under consideration)
@@ -120,9 +121,7 @@
  S  3118  Revising the buffer protocol                 Oliphant, Banks
  S  3119  Introducing Abstract Base Classes            GvR, Talin
  S  3124  Overloading, Generic Functions, Interfaces   Eby
- S  3127  Integer Literal Support and Syntax           Maupin
  S  3128  BList: A Faster List-like Type               Stutzbach
- S  3130  Access to Current Module/Class/Function      Jewett
  S  3131  Supporting Non-ASCII Identifiers             von Löwis
  S  3132  Extended Iterable Unpacking                  Brandl
  S  3141  A Type Hierarchy for Numbers                 Yasskin
@@ -269,6 +268,7 @@
  SR 3122  Delineation of the main module               Cannon
  SR 3125  Remove Backslash Continuation                Jewett
  SR 3126  Remove Implicit String Concatenation         Jewett
+ SR 3130  Access to Current Module/Class/Function      Jewett
 
 
 Numerical Index
@@ -496,10 +496,10 @@
  S  3124  Overloading, Generic Functions, Interfaces   Eby
  SR 3125  Remove Backslash Continuation                Jewett
  SR 3126  Remove Implicit String Concatenation         Jewett
- S  3127  Integer Literal Support and Syntax           Maupin
+ SA 3127  Integer Literal Support and Syntax           Maupin
  S  3128  BList: A Faster List-like Type               Stutzbach
  SA 3129  Class Decorators                             Winter
- S  3130  Access to Current Module/Class/Function      Jewett
+ SR 3130  Access to Current Module/Class/Function      Jewett
  S  3131  Supporting Non-ASCII Identifiers             von Löwis
  S  3132  Extended Iterable Unpacking                  Brandl
  S  3141  A Type Hierarchy for Numbers                 Yasskin

Modified: peps/trunk/pep-3127.txt
==============================================================================
--- peps/trunk/pep-3127.txt	(original)
+++ peps/trunk/pep-3127.txt	Fri May 11 00:56:48 2007
@@ -4,7 +4,7 @@
 Last-Modified: $Date$
 Author: Patrick Maupin <pmaupin at gmail.com>
 Discussions-To: Python-3000 at python.org
-Status: Draft
+Status: Accepted
 Type: Standards Track
 Python-Version: 3.0
 Content-Type: text/x-rst

Modified: peps/trunk/pep-3130.txt
==============================================================================
--- peps/trunk/pep-3130.txt	(original)
+++ peps/trunk/pep-3130.txt	Fri May 11 00:56:48 2007
@@ -3,7 +3,7 @@
 Version: $Revision$
 Last-Modified: $Date$
 Author: Jim J. Jewett <jimjjewett at gmail.com>
-Status: Draft
+Status: Rejected
 Type: Standards Track
 Content-Type: text/plain
 Created: 22-Apr-2007
@@ -11,6 +11,14 @@
 Post-History: 22-Apr-2007
 
 
+Rejection Notice
+
+    This PEP is rejected.  It is not clear how it should be
+    implemented or what the precise semantics should be in edge cases,
+    and there aren't enough important use cases given.  response has
+    been lukewarm at best.
+
+
 Abstract
 
     It is common to need a reference to the current module, class,


More information about the Python-checkins mailing list