diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-16 06:37:57 +0000 |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-16 06:37:57 +0000 |
commit | 95d97c7390beb72083dac5a801cadfb4c1379fe5 (patch) | |
tree | c8d721828711e47fa02081e2a71768ad68799fd7 /Lib/test/test_py3kwarn.py | |
parent | 5915a4dcfebf74d0a2c99848ede619f5bf7d2899 (diff) | |
download | cpython-git-95d97c7390beb72083dac5a801cadfb4c1379fe5.tar.gz |
Renamed the repr module to reprlib.
Added stub module for repr.
Diffstat (limited to 'Lib/test/test_py3kwarn.py')
-rw-r--r-- | Lib/test/test_py3kwarn.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/test_py3kwarn.py b/Lib/test/test_py3kwarn.py index 6864dae74b..857810a45c 100644 --- a/Lib/test/test_py3kwarn.py +++ b/Lib/test/test_py3kwarn.py @@ -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: |