Renamed SocketServer to 'socketserver'.
Deprecated old name.
This commit is contained in:
parent
ed02e51ab2
commit
fb9ce65a91
|
@ -0,0 +1,8 @@
|
||||||
|
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
|
|
@ -182,7 +182,8 @@ class TestStdlibRemovals(unittest.TestCase):
|
||||||
|
|
||||||
class TestStdlibRenames(unittest.TestCase):
|
class TestStdlibRenames(unittest.TestCase):
|
||||||
|
|
||||||
renames = {'copy_reg': 'copyreg', 'Queue': 'queue'}
|
renames = {'copy_reg': 'copyreg', 'Queue': 'queue',
|
||||||
|
'SocketServer': 'socketserver'}
|
||||||
|
|
||||||
def check_rename(self, module_name, new_module_name):
|
def check_rename(self, module_name, new_module_name):
|
||||||
"""Make sure that:
|
"""Make sure that:
|
||||||
|
|
|
@ -26,6 +26,9 @@ Extension Modules
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
- The SocketServer module has been renamed 'socketserver'. The old
|
||||||
|
name is now deprecated.
|
||||||
|
|
||||||
- The imageop module has been deprecated for removal in Python 3.0.
|
- The imageop module has been deprecated for removal in Python 3.0.
|
||||||
|
|
||||||
- #2250: Exceptions raised during evaluation of names in rlcompleter's
|
- #2250: Exceptions raised during evaluation of names in rlcompleter's
|
||||||
|
|
Loading…
Reference in New Issue