Skip to content

Commit

Permalink
Doc: Fix inconsistency in multiprocessing (GH-12273)
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienPalard authored Mar 11, 2019
1 parent 876e82b commit d9bd8ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Doc/library/multiprocessing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1654,7 +1654,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', 5000), authkey=b'abc')
>>> m = BaseManager(address=('127.0.0.1', 50000), authkey=b'abc')
>>> m.connect()

.. method:: shutdown()
Expand Down

0 comments on commit d9bd8ec

Please sign in to comment.