cpython/Lib/lib-old/copy_reg.py
Alexandre Vassalotti 1b9df6862a 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.
2008-05-14 21:52:37 +00:00

8 lines
192 B
Python

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