Amaury Forgeot d'Arc <amaur...@gmail.com> added the comment:

> 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.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue11240>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to