Kaydet (Commit) 95d97c73 authored tarafından Alexandre Vassalotti's avatar Alexandre Vassalotti

Renamed the repr module to reprlib.

Added stub module for repr.
üst 5915a4dc
from warnings import warnpy3k
warnpy3k("The repr module has been renamed to 'reprlib' in Python 3.0",
stacklevel=2)
from sys import modules
import reprlib
modules[__name__] = repr
...@@ -210,7 +210,9 @@ class TestStdlibRenames(unittest.TestCase): ...@@ -210,7 +210,9 @@ class TestStdlibRenames(unittest.TestCase):
renames = {'copy_reg': 'copyreg', 'Queue': 'queue', renames = {'copy_reg': 'copyreg', 'Queue': 'queue',
'SocketServer': 'socketserver', 'SocketServer': 'socketserver',
'ConfigParser': 'configparser'} 'ConfigParser': 'configparser',
'repr': 'reprlib',
}
def check_rename(self, module_name, new_module_name): def check_rename(self, module_name, new_module_name):
"""Make sure that: """Make sure that:
......
...@@ -37,6 +37,9 @@ Extension Modules ...@@ -37,6 +37,9 @@ Extension Modules
Library Library
------- -------
- The repr module has been renamed 'reprlib'. The old name is now
deprecated.
- The statvfs module has been deprecated for removal in Python 3.0. - The statvfs module has been deprecated for removal in Python 3.0.
- The sunaudiodev and SUNAUDIODEV modules have been deprecated for removal in - The sunaudiodev and SUNAUDIODEV modules have been deprecated for removal in
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment