mirror of
https://github.com/python/cpython.git
synced 2025-09-19 07:00:59 +00:00
7 lines
190 B
Python
7 lines
190 B
Python
from warnings import warnpy3k
|
|
warnpy3k("The repr module has been renamed to 'reprlib' in Python 3.0",
|
|
stacklevel=2)
|
|
|
|
from sys import modules
|
|
import reprlib
|
|
modules[__name__] = repr
|