Doc: Fix inconsistency in multiprocessing (GH-12273)

This commit is contained in:
Julien Palard 2019-03-11 14:54:48 +01:00 committed by GitHub
parent 876e82b4f3
commit d9bd8ec2a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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