diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-11 09:01:51 +0000 |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-11 09:01:51 +0000 |
commit | 25ad76c91d9add168369360cb33953070a4c16a1 (patch) | |
tree | 664a8e7ef6f7e3f68d7d4bd143a20b71e360c722 /Lib/test/test_py3kwarn.py | |
parent | 2ac747c05af00f09fba578b1d2a177ebe61931f2 (diff) | |
download | cpython-git-25ad76c91d9add168369360cb33953070a4c16a1.tar.gz |
Added test for copy_reg rename.
Added note to documentation about copy_reg rename.
Diffstat (limited to 'Lib/test/test_py3kwarn.py')
-rw-r--r-- | Lib/test/test_py3kwarn.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_py3kwarn.py b/Lib/test/test_py3kwarn.py index ddf38ad797..40f7b19045 100644 --- a/Lib/test/test_py3kwarn.py +++ b/Lib/test/test_py3kwarn.py @@ -183,7 +183,7 @@ class TestStdlibRemovals(unittest.TestCase): class TestStdlibRenames(unittest.TestCase): - renames = {} + renames = {'copy_reg': 'copyreg'} def check_rename(self, module_name, new_module_name): """Make sure that: |