[issue12042] What's New multiprocessing example error

2012-01-05 Thread Sandro Tosi
Sandro Tosi added the comment: Thanks Davi for the report and Jordan for the patch! Jordan, a tip for your (hopefully) future contributions: for doc patches, please don't re-indent the whole paragraph, since it makes harder to identify the actual changes, just change what is needed, and the c

[issue12042] What's New multiprocessing example error

2012-01-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3353f9747a39 by Sandro Tosi in branch '2.7': Issue #12042: a queue is only used to retrive results; preliminary patch by Jordan Stadler http://hg.python.org/cpython/rev/3353f9747a39 New changeset 0d4bb1356f39 by Sandro Tosi in branch '3.2': Issue

[issue12042] What's New multiprocessing example error

2011-05-27 Thread Éric Araujo
Changes by Éric Araujo : Removed file: http://bugs.python.org/file22141/unnamed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue12042] What's New multiprocessing example error

2011-05-27 Thread Jordan Stadler
Jordan Stadler added the comment: Alright, thanks for the clarification, that's pretty much how I thought it worked. Patches supplied should be good then. -- ___ Python tracker ___

[issue12042] What's New multiprocessing example error

2011-05-26 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue12042] What's New multiprocessing example error

2011-05-26 Thread R. David Murray
R. David Murray added the comment: Sometimes only one patch is needed, if it applies cleanly to both python2 and python3. If it doesn't, then two patches are useful, one for python2.7 and one for python3.2. (The last version of 3.1 is about to be released, so I don't think it likely that th

[issue12042] What's New multiprocessing example error

2011-05-26 Thread Jordan Stadler
Jordan Stadler added the comment: To be honest, I'm getting a bit confused as to what is required. I thought the two most important patches would be 2.7 and 3.2, but we have 2.7, 3.1, 3.2, and 3.3 listed as versions affected. I posted the patch for 2.7 originally on May 14th. I'm not sure

[issue12042] What's New multiprocessing example error

2011-05-26 Thread Davi Post
Davi Post added the comment: Thanks Jordan. How about 2.7? Is that not an open branch? --Davi On Thu, May 26, 2011 at 12:17 PM, Jordan Stadler wrote: > > Jordan Stadler added the comment: > > Alright, patches are up for 3.1 and 3.2. I'm not sure if I can just make > one for the 3.x's so I ma

[issue12042] What's New multiprocessing example error

2011-05-26 Thread Jordan Stadler
Jordan Stadler added the comment: Alright, patches are up for 3.1 and 3.2. I'm not sure if I can just make one for the 3.x's so I made both. -- ___ Python tracker ___ _

[issue12042] What's New multiprocessing example error

2011-05-26 Thread Jordan Stadler
Changes by Jordan Stadler : Added file: http://bugs.python.org/file22128/issue12042_32.patch ___ Python tracker ___ ___ Python-bugs-list maili

[issue12042] What's New multiprocessing example error

2011-05-26 Thread Jordan Stadler
Changes by Jordan Stadler : Added file: http://bugs.python.org/file22127/issue12042_31.patch ___ Python tracker ___ ___ Python-bugs-list maili

[issue12042] What's New multiprocessing example error

2011-05-23 Thread Éric Araujo
Éric Araujo added the comment: Let’s fix it in the open branches. -- versions: +Python 3.1, Python 3.2, Python 3.3 ___ Python tracker ___ ___

[issue12042] What's New multiprocessing example error

2011-05-23 Thread Jordan Stadler
Jordan Stadler added the comment: Alright, should it be closed if we aren't going to touch it? -- ___ Python tracker ___ ___ Python-b

[issue12042] What's New multiprocessing example error

2011-05-23 Thread Davi Post
Davi Post added the comment: The What's New docs are the place to find information on changes between versions. Upgrading to 2.7 from 2.5, I needed to read the 2.6 and 2.7 What's New docs to learn what changes I should be aware of. I hope errors in these docs will be fixed, at least for a few

[issue12042] What's New multiprocessing example error

2011-05-23 Thread Éric Araujo
Éric Araujo added the comment: I’m not sure historical whatsnew documents get fixes. As long as the PEPs and docs get fixes, the whatsnew can stay as they are. -- nosy: +eric.araujo ___ Python tracker __

[issue12042] What's New multiprocessing example error

2011-05-14 Thread Jordan Stadler
Jordan Stadler added the comment: Patch is up for 2.7, minor change in the documentation. -- ___ Python tracker ___ ___ Python-bugs-l

[issue12042] What's New multiprocessing example error

2011-05-14 Thread Jordan Stadler
Changes by Jordan Stadler : -- keywords: +patch Added file: http://bugs.python.org/file22002/issue12042_2.7.patch ___ Python tracker ___ _

[issue12042] What's New multiprocessing example error

2011-05-13 Thread Jordan Stadler
Jordan Stadler added the comment: I'll prepare the patch if davipo doesn't want to. I'm trying to become more comfortable with the patching process and this seems simple enough for me to handle. -- nosy: +jstadler ___ Python tracker

[issue12042] What's New multiprocessing example error

2011-05-11 Thread Ezio Melotti
Ezio Melotti added the comment: The workflow to prepare a patch using Mercurial is pretty much the same as SVN: # get a clone (checkout) of the repository hg clone http://hg.python.org/cpython # select the branch where you want to fix the issue hg update 2.7 # make changes on the file(s) and m

[issue12042] What's New multiprocessing example error

2011-05-09 Thread Davi Post
New submission from Davi Post : In this section: http://docs.python.org/whatsnew/2.6.html#pep-371-the-multiprocessing-package This sentence follows the first example: "A Queue is used to communicate the input parameter N and the result." In the example, the queue is used only for the result, no