[issue5744] multiprocessing.managers.BaseManager.connect example typos

2009-04-12 Thread Garrett Cooper
Garrett Cooper added the comment: Thanks for noting that George Y. and thanks for fixing the documentation on SVN Benjamin :). -- ___ Python tracker ___ _

[issue5744] multiprocessing.managers.BaseManager.connect example typos

2009-04-12 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue5744] multiprocessing.managers.BaseManager.connect example typos

2009-04-12 Thread Benjamin Peterson
Benjamin Peterson added the comment: Ah. My apologies. I thought the second typo was that it rendered incorrectly as your example shows. Fixed in r71546. -- ___ Python tracker __

[issue5744] multiprocessing.managers.BaseManager.connect example typos

2009-04-12 Thread George Yoshida
George Yoshida added the comment: > The example ... has *2* typos I guess the reporter wants to point out - extra parenthesis(fixed in r71544) - closing quote is missing for authkey argument -- nosy: +quiver status: closed -> open ___ Python tracke

[issue5744] multiprocessing.managers.BaseManager.connect example typos

2009-04-12 Thread Benjamin Peterson
Benjamin Peterson added the comment: Fixed in r71544. -- nosy: +benjamin.peterson resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue5744] multiprocessing.managers.BaseManager.connect example typos

2009-04-12 Thread Garrett Cooper
New submission from Garrett Cooper : 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 mul