From: Alexandre Vassalotti Date: Sun, 11 May 2008 09:01:51 +0000 (+0000) Subject: Added test for copy_reg rename. X-Git-Tag: v2.6b1~507 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=25ad76c91d9add168369360cb33953070a4c16a1;p=thirdparty%2FPython%2Fcpython.git Added test for copy_reg rename. Added note to documentation about copy_reg rename. --- diff --git a/Doc/library/copy_reg.rst b/Doc/library/copy_reg.rst index 9b82a31bacc8..407044c4bb28 100644 --- a/Doc/library/copy_reg.rst +++ b/Doc/library/copy_reg.rst @@ -5,6 +5,8 @@ .. module:: copy_reg :synopsis: Register pickle support functions. +.. note:: + The :mod:`copy_reg` module has been renamed to `copyreg` in Python 3.0. .. index:: module: pickle diff --git a/Lib/test/test_py3kwarn.py b/Lib/test/test_py3kwarn.py index ddf38ad797db..40f7b1904551 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: