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 xdegaye
Recipients jnoller, xdegaye
Date 2013-09-28.15:51:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1380383507.04.0.708798356972.issue19112@psf.upfronthosting.co.za>
In-reply-to
Content
class _TestProcess in Lib/test/_test_multiprocessing.py is
overshadowed by a function of the same name.  And test_current is its
first method:

$ ./python -m test -v test_multiprocessing_fork | grep test_current
$

With the attached patch:

$ ./python -m test -v test_multiprocessing_fork | grep test_current
test_current (test.test_multiprocessing_fork.WithProcessesTestProcess) ... ok
test_current (test.test_multiprocessing_fork.WithThreadsTestProcess) ... ok
$
History
Date User Action Args
2013-09-28 15:51:47xdegayesetrecipients: + xdegaye, jnoller
2013-09-28 15:51:47xdegayesetmessageid: <1380383507.04.0.708798356972.issue19112@psf.upfronthosting.co.za>
2013-09-28 15:51:46xdegayelinkissue19112 messages
2013-09-28 15:51:46xdegayecreate