[Python-checkins] r55378 - peps/trunk/pep-0004.txt peps/trunk/pep-0361.txt peps/trunk/pep-3100.txt

brett.cannon python-checkins at python.org
Wed May 16 07:27:47 CEST 2007


Author: brett.cannon
Date: Wed May 16 07:27:37 2007
New Revision: 55378

Modified:
   peps/trunk/pep-0004.txt
   peps/trunk/pep-0361.txt
   peps/trunk/pep-3100.txt
Log:
More clearly specify what modules should be removed in Python 2.6 along with
what deprecated modules currently lack a DeprecationWarning.


Modified: peps/trunk/pep-0004.txt
==============================================================================
--- peps/trunk/pep-0004.txt	(original)
+++ peps/trunk/pep-0004.txt	Wed May 16 07:27:37 2007
@@ -78,6 +78,11 @@
         rand, reconvert, regex, regsub, statcache, tb, tzparse,
         util, whatsound, whrandom, zmod
 
+    The following modules currently lack a DeprecationWarning:
+
+        posixfile, rfc822, mimetools, MimeWriter, mimify,
+        multifile, md5, sha
+
 
 Deprecated modules
 

Modified: peps/trunk/pep-0361.txt
==============================================================================
--- peps/trunk/pep-0361.txt	(original)
+++ peps/trunk/pep-0361.txt	Wed May 16 07:27:37 2007
@@ -59,6 +59,10 @@
 
         None
 
+    Deprecated modules in the standard library:
+
+        - sets
+
     Python 3.0 compatability:
 
         None
@@ -100,6 +104,26 @@
           PJE's withdrawal from 2.5 for inclusion in 2.6:
           http://mail.python.org/pipermail/python-dev/2006-April/064145.html
 
+    Modules to be removed according to PEP 4:
+
+        - gopherlib
+        - rgbimg
+        - buildtools [if DeprecationWarning raised in 2.5]
+        - cfmfile [if DeprecationWarning raised in 2.5]
+        - macfs [if DeprecationWarning raised in 2.5]
+
+    Module to gain a DeprecationWarning (as specified for Python 2.6
+    or through negligence):
+
+        - posixfile
+        - rfc822
+        - mimetools
+        - MimeWriter
+        - mimify
+        - multifile
+        - md5
+        - sha
+
     - warnings module implemented in C
       * Convert Parser/*.c to use warnings module rather than printf
 
@@ -124,7 +148,7 @@
       * function attributes that start with func_* (should use __*__)
       * softspace removal for print() function
       * the L suffix for long literals
-      * removal of the sets and exceptions module
+      * removal of modules because of PEP 4/3100/3108
       * renaming of __nonzero__ to __bool__
       * multiple inheritance with classic classes? (MRO might change)
       * properties and classic classes? (instance attrs shadow property)

Modified: peps/trunk/pep-3100.txt
==============================================================================
--- peps/trunk/pep-3100.txt	(original)
+++ peps/trunk/pep-3100.txt	Wed May 16 07:27:37 2007
@@ -217,7 +217,6 @@
           ``mpz``,
           ``multifile``,
           ``posixfile``, 
-          ``pre``,
           ``regsub``,
           ``rfc822``,
           ``rgbimage``,


More information about the Python-checkins mailing list