[Python-checkins] commit of r41516 - peps/trunk

brett.cannon@python.org brett.cannon at python.org
Tue Nov 22 20:41:56 CET 2005


Author: brett.cannon
Date: Tue Nov 22 20:41:50 2005
New Revision: 41516

Modified:
   peps/trunk/pep-0352.txt
Log:
Add a note that deprecations in 2.9 are optional since they might not be
desirable considering how many changes between 2.9 and 3.0 there will be and
thus deprecating everything could make 2.9 rather "noisy" in terms of
deprecations.


Modified: peps/trunk/pep-0352.txt
==============================================================================
--- peps/trunk/pep-0352.txt	(original)
+++ peps/trunk/pep-0352.txt	Tue Nov 22 20:41:50 2005
@@ -189,6 +189,15 @@
 deprecation and the raising of a DeprecationWarning for the version
 specifically listed.
 
+Deprecation of features in Python 2.9 is optional.  This is because it
+is not known at this time if Python 2.9 (which is slated to be the last version
+in the 2.x series) will actively deprecate features that will not be in 3.0 .
+It is conceivable that no deprecation warnings will be used in 2.9 since
+there could be such a difference between 2.9 and 3.0 that it would make 2.9 too
+"noisy" in terms of warnings.  Thus the proposed deprecation warnings for
+Python 2.9 will be revisited when development of that version begins to
+determine if they are still desired.
+
 * Python 2.5
 
   - introduce BaseException
@@ -215,7 +224,7 @@
 
 * Python 2.9
   
-  - deprecate ``args`` and ``__getitem__``
+  - deprecate ``args`` and ``__getitem__`` (optional)
 
 * Python 3.0
 


More information about the Python-checkins mailing list