[issue5162] multiprocessing cannot spawn child from a Windows service

2015-01-07 Thread Marc Schlaich
Marc Schlaich added the comment: This issue is not fully fixed, there are some occasions where you can still run into it. One example is if you want to spawn a new multiprocessing.Process as sub process in a multiprocessing.Process: pythonservice.exe - multiprocessing.Process - multipro

[issue5162] multiprocessing cannot spawn child from a Windows service

2011-04-18 Thread Brian Curtin
Changes by Brian Curtin : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue5162] multiprocessing cannot spawn child from a Windows service

2011-04-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset c26474c6504a by brian.curtin in branch '3.1': Add NEWS item for #5162. http://hg.python.org/cpython/rev/c26474c6504a New changeset 68ef2bf1aa99 by brian.curtin in branch '3.2': Add NEWS item for #5162. http://hg.python.org/cpython/rev/68ef2bf1aa99

[issue5162] multiprocessing cannot spawn child from a Windows service

2011-04-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset a280672d3d8d by brian.curtin in branch '2.7': Add NEWS item for #5162. http://hg.python.org/cpython/rev/a280672d3d8d -- ___ Python tracker

[issue5162] multiprocessing cannot spawn child from a Windows service

2011-04-11 Thread Brian Curtin
Brian Curtin added the comment: Thanks for the patch! -- assignee: jnoller -> brian.curtin resolution: -> fixed stage: patch review -> committed/rejected ___ Python tracker ___

[issue5162] multiprocessing cannot spawn child from a Windows service

2011-04-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1f41b1ab8924 by brian.curtin in branch '3.1': Fix #5162. Allow child spawning from Windows services (via pywin32). http://hg.python.org/cpython/rev/1f41b1ab8924 New changeset 184ae02e3221 by brian.curtin in branch '3.2': Fix #5162. Allow child spaw

[issue5162] multiprocessing cannot spawn child from a Windows service

2011-04-11 Thread Brian Curtin
Brian Curtin added the comment: This looks reasonable to me. If no one beats me to it, I'll check it in tonight. -- ___ Python tracker ___ ___

[issue5162] multiprocessing cannot spawn child from a Windows service

2011-04-11 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- stage: test needed -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5162] multiprocessing cannot spawn child from a Windows service

2011-04-11 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- components: +Windows nosy: +brian.curtin, tim.golden versions: +Python 3.3 ___ Python tracker ___ ___ Py

[issue5162] multiprocessing cannot spawn child from a Windows service

2011-01-03 Thread Mher Movsisyan
Mher Movsisyan added the comment: Treating python services like frozen executables solves the issue. The patch is attached. -- Added file: http://bugs.python.org/file20241/forking_r87679.patch ___ Python tracker _

[issue5162] multiprocessing cannot spawn child from a Windows service

2011-01-03 Thread Mher Movsisyan
Mher Movsisyan added the comment: Attached test case demonstrates the issue. -- nosy: +mher Added file: http://bugs.python.org/file20240/test_issue5162.py ___ Python tracker ___

[issue5162] multiprocessing cannot spawn child from a Windows service

2010-07-10 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mai

[issue5162] multiprocessing cannot spawn child from a Windows service

2009-03-29 Thread Jesse Noller
Changes by Jesse Noller : -- priority: -> normal ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue5162] multiprocessing cannot spawn child from a Windows service

2009-03-06 Thread Daniel Diniz
Changes by Daniel Diniz : -- assignee: -> jnoller keywords: +patch stage: -> test needed ___ Python tracker ___ ___ Python-bugs-list

[issue5162] multiprocessing cannot spawn child from a Windows service

2009-02-05 Thread Volodymyr Orlenko
New submission from Volodymyr Orlenko : I think I've found a small bug with multiprocessing package on Windows. If you try to start a multiprocessing.Process from a Python- based Windows service, the child process will fail to run. When running the parent process as a regular Python program, e