Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
f0604fdd
Commit
f0604fdd
authored
Jun 11, 2012
by
Richard Oudkerk
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #3518: Remove references to non-existent BaseManager.from_address()
method
parent
839a482a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
Doc/library/multiprocessing.rst
Doc/library/multiprocessing.rst
+4
-3
Lib/multiprocessing/managers.py
Lib/multiprocessing/managers.py
+0
-4
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Doc/library/multiprocessing.rst
View file @
f0604fdd
...
...
@@ -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
...
...
Lib/multiprocessing/managers.py
View file @
f0604fdd
...
...
@@ -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
...
...
Misc/NEWS
View file @
f0604fdd
...
...
@@ -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)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment