-
-
Notifications
You must be signed in to change notification settings - Fork 32.1k
bpo-32146: Add documentation about frozen executables on Unix #5850
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bpo-32146: Add documentation about frozen executables on Unix #5850
Conversation
@Mariatta, I noticed you added the backport labels to this a while back. Anything I can do to move this along? |
I removed the " needs backport to 3.6" label, the 3.6 branch no longer accept bugfixes (only security fixes are accepted): https://devguide.python.org/#status-of-python-branches |
@vstinner, anything I ought to do to get this in to 3.7+? This is an outstanding problem in those releases. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cc @pitrou
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks fair to me. I'm sorry not noticing your (other) PR before.
GH-11511 is a backport of this pull request to the 3.7 branch. |
…GH-5850) (cherry picked from commit bab4bbb) Co-authored-by: Bo Bayles <[email protected]>
(cherry picked from commit bab4bbb) Co-authored-by: Bo Bayles <[email protected]>
This PR adds a note to the
multiprocessing
module's documentation about using "frozen" executables with the'spawn'
and'forkserver'
start methods.This patch simply documents that this should be avoided. I hope it can be applied to the docs for previous Python versions as well (at least 3.7?), as all versions since 3.4 suffer from the issue?
I previously proposed a patch for the problem in PR #5195, but I imagine that will need to be revised and updated for 3.8.
https://bugs.python.org/issue32146