[issue4012] Minor errors in multiprocessing docs

2008-11-28 Thread Jesse Noller
Jesse Noller [EMAIL PROTECTED] added the comment: Warning added for georg's issue, all doc errors fixed on trunk, py3k and 2.6.1 maint. see r67419 -- resolution: - fixed status: open - closed ___ Python tracker [EMAIL PROTECTED]

[issue4012] Minor errors in multiprocessing docs

2008-11-22 Thread Georg Brandl
Georg Brandl [EMAIL PROTECTED] added the comment: Fixed applyAsync and missing ] in r67335. ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4012 ___ ___

[issue4012] Minor errors in multiprocessing docs

2008-10-24 Thread Erick Tryzelaar
Erick Tryzelaar [EMAIL PROTECTED] added the comment: fyi, the multiprocessing docs also refer to applyAync, but the function was renamed to apply_async. This is also in the python 3.0 docs. -- nosy: +erickt versions: +Python 3.0 ___ Python tracker

[issue4012] Minor errors in multiprocessing docs

2008-10-22 Thread osvenskan
osvenskan [EMAIL PROTECTED] added the comment: The Synchronization primitives section should mention that sem_timedwait() isn't supported under OS X =10.5.5 (and possibly later versions) so as a result timeouts passed to acquire() will be ignored (or raise an error?)

[issue4012] Minor errors in multiprocessing docs

2008-10-22 Thread Jesse Noller
Jesse Noller [EMAIL PROTECTED] added the comment: fix_up_logger doesn't exist in the port, but is used in the mp_distributing.py example ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4012 ___

[issue4012] Minor errors in multiprocessing docs

2008-10-09 Thread David Ripton
David Ripton [EMAIL PROTECTED] added the comment: Also, two of the example code blurbs in that page still refer to the module as processing instead of multiprocessing. (Search for import processing to find them.) -- nosy: +dripton ___ Python tracker

[issue4012] Minor errors in multiprocessing docs

2008-10-02 Thread Jesse Noller
Changes by Jesse Noller [EMAIL PROTECTED]: -- assignee: georg.brandl - jnoller nosy: +jnoller ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4012 ___

[issue4012] Minor errors in multiprocessing docs

2008-10-02 Thread Georg Brandl
Georg Brandl [EMAIL PROTECTED] added the comment: There's also an applyAsync left in the introductory Pool example. Jesse, while you're at it, could you please add a blurb that some examples won't work when tried at the interactive interpreter (and perhaps also why)?

[issue4012] Minor errors in multiprocessing docs

2008-10-02 Thread Jesse Noller
Jesse Noller [EMAIL PROTECTED] added the comment: Which examples are you talking about Georg? ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4012 ___ ___

[issue4012] Minor errors in multiprocessing docs

2008-10-02 Thread Jesse Noller
Jesse Noller [EMAIL PROTECTED] added the comment: Also, several things which are properties are still referred to as methods and include the () chars for the call ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4012

[issue4012] Minor errors in multiprocessing docs

2008-10-02 Thread Georg Brandl
Georg Brandl [EMAIL PROTECTED] added the comment: I e.g. tried a minimal example with Pool.map(): from multiprocessing import Pool p = Pool(5) def f(x): ... return x*x ... p.map(f, [1,2,3]) Process PoolWorker-1: Traceback (most recent call last): File

[issue4012] Minor errors in multiprocessing docs

2008-10-02 Thread Jesse Noller
Jesse Noller [EMAIL PROTECTED] added the comment: Ok, let me take a look at that ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4012 ___ ___ Python-bugs-list

[issue4012] Minor errors in multiprocessing docs

2008-10-02 Thread Kent Johnson
Kent Johnson [EMAIL PROTECTED] added the comment: On Thu, Oct 2, 2008 at 1:07 PM, Jesse Noller [EMAIL PROTECTED] wrote: Jesse Noller [EMAIL PROTECTED] added the comment: Which examples are you talking about Georg? I think you mean me, not Georg...I was referring to the example that

[issue4012] Minor errors in multiprocessing docs

2008-10-01 Thread Kent Johnson
New submission from Kent Johnson [EMAIL PROTECTED]: In the docs for AsyncResult http://docs.python.org/dev/library/multiprocessing.html#multiprocessing.pool.AsyncResult get([timeout) is missing a ] In the example following, it refers to pool.applyAsync() in two places; the docs spell this