summaryrefslogtreecommitdiffstats
path: root/Doc/library/multiprocessing.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-04-27 16:45:26 (GMT)
committerGeorg Brandl <georg@python.org>2009-04-27 16:45:26 (GMT)
commit540b45c475aef0d2b803c4d4025a469eefeaa975 (patch)
treecf008d7a05db532dcbfca275ee4cf60dd9d3d383 /Doc/library/multiprocessing.rst
parent68998bf3ff432f35b54c63be82fe9711e830cedc (diff)
downloadcpython-540b45c475aef0d2b803c4d4025a469eefeaa975.zip
cpython-540b45c475aef0d2b803c4d4025a469eefeaa975.tar.gz
cpython-540b45c475aef0d2b803c4d4025a469eefeaa975.tar.bz2
Merged revisions 71544,71546,71554-71555 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r71544 | benjamin.peterson | 2009-04-13 01:19:56 +0200 (Mo, 13 Apr 2009) | 1 line fix extra parenthesis #5774 ........ r71546 | benjamin.peterson | 2009-04-13 01:44:15 +0200 (Mo, 13 Apr 2009) | 1 line fix missing quote ........ r71554 | hirokazu.yamamoto | 2009-04-13 03:07:06 +0200 (Mo, 13 Apr 2009) | 1 line Fixed typo. (email.Utils => email.utils) ........ r71555 | hirokazu.yamamoto | 2009-04-13 03:21:56 +0200 (Mo, 13 Apr 2009) | 1 line Fixed another typos. (email.Utils => email.utils) ........
Diffstat (limited to 'Doc/library/multiprocessing.rst')
-rw-r--r--Doc/library/multiprocessing.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
index b545904..8243b10 100644
--- a/Doc/library/multiprocessing.rst
+++ b/Doc/library/multiprocessing.rst
@@ -1160,7 +1160,7 @@ their parent process exits. The manager classes are defined in the
Connect a local manager object to a remote manager process:
>>> from multiprocessing.managers import BaseManager
- >>> m = BaseManager(address='127.0.0.1', authkey='abc))
+ >>> m = BaseManager(address='127.0.0.1', authkey='abc')
>>> m.connect()
.. method:: shutdown()