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)
........
This commit is contained in:
Georg Brandl 2009-04-27 16:45:26 +00:00
parent 68998bf3ff
commit 540b45c475
2 changed files with 5 additions and 5 deletions

View file

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