mirror of
https://github.com/python/cpython.git
synced 2025-07-29 14:15:07 +00:00
8 lines
211 B
Python
8 lines
211 B
Python
import sys
|
|
from warnings import warnpy3k
|
|
|
|
warnpy3k("the SocketServer module has been renamed "
|
|
"to 'socketserver' in Python 3.0", stacklevel=2)
|
|
|
|
import socketserver
|
|
sys.modules[__name__] = socketserver
|