mirror of
https://github.com/python/cpython.git
synced 2026-05-27 22:56:48 -04:00
fb9ce65a91
Deprecated old name.
9 lines
211 B
Python
9 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
|