[issue5261] with lock fails on multiprocessing

2009-03-30 Thread Jesse Noller
Jesse Noller jnol...@gmail.com added the comment: Reviewed, applied in python-trunk r70783 -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5261

[issue5261] with lock fails on multiprocessing

2009-03-29 Thread Jesse Noller
Changes by Jesse Noller jnol...@gmail.com: -- priority: - high ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5261 ___ ___ Python-bugs-list

[issue5261] with lock fails on multiprocessing

2009-03-28 Thread Tim Golden
Tim Golden m...@timgolden.me.uk added the comment: Can I nudge this one a bit? It causes an interpreter crash and the patch seems good (subject to someone else's review). -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5261

[issue5261] with lock fails on multiprocessing

2009-03-28 Thread Jesse Noller
Jesse Noller jnol...@gmail.com added the comment: I will be addressing all of the MP bugs during the pycon sprints starting sunday -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5261 ___

[issue5261] with lock fails on multiprocessing

2009-02-15 Thread Tim Golden
Changes by Tim Golden m...@timgolden.me.uk: -- type: - crash ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5261 ___ ___ Python-bugs-list mailing

[issue5261] with lock fails on multiprocessing

2009-02-14 Thread Stephen Lynch
New submission from Stephen Lynch stepheng.ly...@gmail.com: the following code gives a system error under python 2.6.1 import multiprocessing with multiprocessing.Lock(): pass SystemError: ..\Python\getargs.c:1413: bad argument to internal function -- components: Library (Lib)

[issue5261] with lock fails on multiprocessing

2009-02-14 Thread Benjamin Peterson
Changes by Benjamin Peterson benja...@python.org: -- assignee: - jnoller nosy: +jnoller ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5261 ___

[issue5261] with lock fails on multiprocessing

2009-02-14 Thread Tim Golden
Tim Golden m...@timgolden.me.uk added the comment: Problem seems to be in Modules/_multiprocessing/semaphore.c line 549 where __enter__ is defined as an alias for semlock_acquire, as is acquire a few lines above. However, while acquire specifies METH_VARARGS | METH_KEYWORDS, __enter__ has only