[Python-checkins] python/nondist/peps pep-0000.txt, 1.298, 1.299 pep-0252.txt, 1.19, 1.20 pep-0253.txt, 1.18, 1.19

bwarsaw at users.sourceforge.net bwarsaw at users.sourceforge.net
Sun Jan 30 04:08:05 CET 2005


Update of /cvsroot/python/python/nondist/peps
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19458

Modified Files:
	pep-0000.txt pep-0252.txt pep-0253.txt 
Log Message:
Marking PEPs 252 and 253 as final, with GvR's approval.  Includes an editor's
note about the accuracy of the description in the PEP.



Index: pep-0000.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0000.txt,v
retrieving revision 1.298
retrieving revision 1.299
diff -u -d -r1.298 -r1.299
--- pep-0000.txt	29 Jan 2005 18:24:59 -0000	1.298
+++ pep-0000.txt	30 Jan 2005 03:08:02 -0000	1.299
@@ -62,8 +62,6 @@
 
  Accepted PEPs (accepted; may not be implemented yet)
 
- S   252  Making Types Look More Like Classes          GvR
- S   253  Subtyping Built-in Types                     GvR
  SA  309  Partial Function Application                 Harris
  SA  328  Imports: Multi-Line and Absolute/Relative    Aahz
 
@@ -150,6 +148,8 @@
  SF  241  Metadata for Python Software Packages        Kuchling
  SF  250  Using site-packages on Windows               Moore
  IF  251  Python 2.2 Release Schedule                  Warsaw, GvR
+ SF  252  Making Types Look More Like Classes          GvR
+ SF  253  Subtyping Built-in Types                     GvR
  SF  255  Simple Generators                            Schemenauer, et al
  SF  260  Simplify xrange()                            GvR
  SF  261  Support for "wide" Unicode characters        Prescod
@@ -286,8 +286,8 @@
  IF  249  Python Database API Specification v2.0       Lemburg
  SF  250  Using site-packages on Windows               Moore
  IF  251  Python 2.2 Release Schedule                  Warsaw, GvR
- S   252  Making Types Look More Like Classes          GvR
- S   253  Subtyping Built-in Types                     GvR
+ SF  252  Making Types Look More Like Classes          GvR
+ SF  253  Subtyping Built-in Types                     GvR
  S   254  Making Classes Look More Like Types          GvR
  SF  255  Simple Generators                            Schemenauer, et al
  S   256  Docstring Processing System Framework        Goodger

Index: pep-0252.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0252.txt,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- pep-0252.txt	4 Oct 2001 04:58:56 -0000	1.19
+++ pep-0252.txt	30 Jan 2005 03:08:02 -0000	1.20
@@ -2,7 +2,7 @@
 Title: Making Types Look More Like Classes
 Version: $Revision$
 Author: guido at python.org (Guido van Rossum)
-Status: Draft
+Status: Final
 Type: Standards Track
 Python-Version: 2.2
 Created: 19-Apr-2001
@@ -27,6 +27,9 @@
     Based on the generalized descriptor API, this PEP also introduces
     a way to declare class methods and static methods.
 
+    [Editor's note: the ideas described in this PEP have been incorporated
+     into Python.  The PEP no longer accurately describes the implementation.]
+
 
 Introduction
 

Index: pep-0253.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0253.txt,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- pep-0253.txt	19 Oct 2001 18:17:00 -0000	1.18
+++ pep-0253.txt	30 Jan 2005 03:08:02 -0000	1.19
@@ -2,7 +2,7 @@
 Title: Subtyping Built-in Types
 Version: $Revision$
 Author: guido at python.org (Guido van Rossum)
-Status: Draft
+Status: Final
 Type: Standards Track
 Python-Version: 2.2
 Created: 14-May-2001
@@ -13,6 +13,9 @@
     This PEP proposes additions to the type object API that will allow
     the creation of subtypes of built-in types, in C and in Python.
 
+    [Editor's note: the ideas described in this PEP have been incorporated
+     into Python.  The PEP no longer accurately describes the implementation.]
+
 
 Introduction
 



More information about the Python-checkins mailing list