Change the warning raised for module renames to PendingDeprecationWarning so

that it is a silent warning by default.
This commit is contained in:
Brett Cannon 2007-01-02 04:45:57 +00:00
parent 8e6fb69418
commit 42a3da6bd2
1 changed files with 3 additions and 3 deletions

View File

@ -409,9 +409,9 @@ For modules to be renamed
-------------------------
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