[Python-checkins] r63240 - in python/trunk/Lib: copy_reg.py lib-old/copy_reg.py

alexandre.vassalotti python-checkins at python.org
Wed May 14 23:52:38 CEST 2008


Author: alexandre.vassalotti
Date: Wed May 14 23:52:37 2008
New Revision: 63240

Log:
Moved copy_reg stub module to lib-old/.

Stub modules will be easier to track (and remove) if they are all kept
in lib-old/, instead of sprinkling them throughout the library.


Added:
   python/trunk/Lib/lib-old/copy_reg.py
      - copied unchanged from r63239, /python/trunk/Lib/copy_reg.py
Removed:
   python/trunk/Lib/copy_reg.py

Deleted: python/trunk/Lib/copy_reg.py
==============================================================================
--- python/trunk/Lib/copy_reg.py	Wed May 14 23:52:37 2008
+++ (empty file)
@@ -1,8 +0,0 @@
-import sys
-from warnings import warnpy3k
-
-warnpy3k("the copy_reg module has been renamed "
-         "to 'copyreg' in Python 3.0", stacklevel=2)
-
-import copyreg
-sys.modules[__name__] = copyreg


More information about the Python-checkins mailing list