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 amaury.forgeotdarc
Recipients amaury.forgeotdarc, mattchaput
Date 2011-02-18.00:51:55
SpamBayes Score 1.4666424e-05
Marked as misclassified No
Message-id <1297990316.17.0.685588693563.issue11240@psf.upfronthosting.co.za>
In-reply-to
Content
> It seems as if the multiprocessing module is starting new Windows
> processes by duplicating the command line of the original process.
It does not. The spawned processes use the command::

  python.exe -c 'from multiprocessing.forking import main; main()' --multiprocessing-fork [handle#]

And only after, the multiprocessing machinery overrides sys.argv with the same value as the initial process.
There is certainly some code in one of your modules that starts running the tests.
History
Date User Action Args
2011-02-18 00:51:56amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, mattchaput
2011-02-18 00:51:56amaury.forgeotdarcsetmessageid: <1297990316.17.0.685588693563.issue11240@psf.upfronthosting.co.za>
2011-02-18 00:51:55amaury.forgeotdarclinkissue11240 messages
2011-02-18 00:51:55amaury.forgeotdarccreate