summaryrefslogtreecommitdiffstats
path: root/Lib/multiprocessing/managers.py
diff options
context:
space:
mode:
authorRichard Oudkerk <shibturn@gmail.com>2012-06-11 16:56:08 (GMT)
committerRichard Oudkerk <shibturn@gmail.com>2012-06-11 16:56:08 (GMT)
commitf0604fddc3b9a775f22d19d7d7fe50c4aa1ecf7d (patch)
tree3a5d1f001f19e5948cb8003c5f9a063dc8a96b84 /Lib/multiprocessing/managers.py
parent839a482a1159767aa34ce947b7e3429396c2325e (diff)
downloadcpython-f0604fddc3b9a775f22d19d7d7fe50c4aa1ecf7d.zip
cpython-f0604fddc3b9a775f22d19d7d7fe50c4aa1ecf7d.tar.gz
cpython-f0604fddc3b9a775f22d19d7d7fe50c4aa1ecf7d.tar.bz2
Issue #3518: Remove references to non-existent BaseManager.from_address()
method
Diffstat (limited to 'Lib/multiprocessing/managers.py')
-rw-r--r--Lib/multiprocessing/managers.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/multiprocessing/managers.py b/Lib/multiprocessing/managers.py
index 6a7dccb..7059095 100644
--- a/Lib/multiprocessing/managers.py
+++ b/Lib/multiprocessing/managers.py
@@ -455,10 +455,6 @@ class BaseManager(object):
self._serializer = serializer
self._Listener, self._Client = listener_client[serializer]
- def __reduce__(self):
- return type(self).from_address, \
- (self._address, self._authkey, self._serializer)
-
def get_server(self):
'''
Return server object with serve_forever() method and address attribute