Change the warning raised for module renames to PendingDeprecationWarning so
that it is a silent warning by default.
This commit is contained in:
parent
8e6fb69418
commit
42a3da6bd2
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue