This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ngie
Recipients georg.brandl, jnoller, ngie
Date 2009-04-12.23:08:12
SpamBayes Score 1.1947317e-08
Marked as misclassified No
Message-id <1239577694.3.0.661337704355.issue5744@psf.upfronthosting.co.za>
In-reply-to
Content
The example under multiprocessing.managers.BaseManager.connect has 2 typos:

    >>> from multiprocessing.managers import BaseManager
    >>> m = BaseManager(address='127.0.0.1', authkey='abc))>>> 
    m.connect()

Here's a corrected example:

    >>> from multiprocessing.managers import BaseManager
    >>> m = BaseManager(address='127.0.0.1', authkey='abc')
    >>> m.connect()
History
Date User Action Args
2009-04-12 23:08:14ngiesetrecipients: + ngie, georg.brandl, jnoller
2009-04-12 23:08:14ngiesetmessageid: <1239577694.3.0.661337704355.issue5744@psf.upfronthosting.co.za>
2009-04-12 23:08:12ngielinkissue5744 messages
2009-04-12 23:08:12ngiecreate