Issue #3518: Remove references to non-existent BaseManager.from_address()

method
This commit is contained in:
Richard Oudkerk 2012-06-11 17:56:08 +01:00
parent 839a482a11
commit f0604fddc3
3 changed files with 7 additions and 7 deletions

View File

@ -1236,9 +1236,10 @@ their parent process exits. The manager classes are defined in the
type of shared object. This must be a string.
*callable* is a callable used for creating objects for this type
identifier. If a manager instance will be created using the
:meth:`from_address` classmethod or if the *create_method* argument is
``False`` then this can be left as ``None``.
identifier. If a manager instance will be connected to the
server using the :meth:`connect` method, or if the
*create_method* argument is ``False`` then this can be left as
``None``.
*proxytype* is a subclass of :class:`BaseProxy` which is used to create
proxies for shared objects with this *typeid*. If ``None`` then a proxy

View File

@ -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

View File

@ -21,6 +21,9 @@ Core and Builtins
Library
-------
- Issue #3518: Remove references to non-existent BaseManager.from_address()
method.
- Issue #13857: Added textwrap.indent() function (initial patch by Ezra
Berch)