[Python-checkins] r53206 - peps/trunk/pep-3108.txt

brett.cannon python-checkins at python.org
Tue Jan 2 05:45:57 CET 2007


Author: brett.cannon
Date: Tue Jan  2 05:45:57 2007
New Revision: 53206

Modified:
   peps/trunk/pep-3108.txt
Log:
Change the warning raised for module renames to PendingDeprecationWarning so
that it is a silent warning by default.


Modified: peps/trunk/pep-3108.txt
==============================================================================
--- peps/trunk/pep-3108.txt	(original)
+++ peps/trunk/pep-3108.txt	Tue Jan  2 05:45:57 2007
@@ -409,9 +409,9 @@
 -------------------------
 
 Modules will be renamed in Python 2.6 .  The original names of the
-modules will still work but will raise ImportWarning upon import.  The
-refactoring tool for transitioning to Python 3.0 will refactor imports
-that use the original names to the new names.
+modules will still work but will raise a PendingDeprecationWarning
+upon import.  The refactoring tool for transitioning to Python 3.0
+will refactor imports that use the new names.
 
 
 Open Issues


More information about the Python-checkins mailing list