mirror of https://github.com/python/cpython
Renamed the repr module to reprlib.
Added stub module for repr.
This commit is contained in:
parent
5915a4dcfe
commit
95d97c7390
|
@ -0,0 +1,7 @@
|
|||
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):
|
|||
|
||||
renames = {'copy_reg': 'copyreg', 'Queue': 'queue',
|
||||
'SocketServer': 'socketserver',
|
||||
'ConfigParser': 'configparser'}
|
||||
'ConfigParser': 'configparser',
|
||||
'repr': 'reprlib',
|
||||
}
|
||||
|
||||
def check_rename(self, module_name, new_module_name):
|
||||
"""Make sure that:
|
||||
|
|
Loading…
Reference in New Issue