bpo-32146: Add documentation about frozen executables on Unix#5850
Merged
vstinner merged 2 commits intopython:masterfrom Jan 10, 2019
Merged
bpo-32146: Add documentation about frozen executables on Unix#5850vstinner merged 2 commits intopython:masterfrom
vstinner merged 2 commits intopython:masterfrom
Conversation
matrixise
approved these changes
May 14, 2018
Contributor
Author
|
@Mariatta, I noticed you added the backport labels to this a while back. Anything I can do to move this along? |
Member
|
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 |
Contributor
Author
|
@vstinner, anything I ought to do to get this in to 3.7+? This is an outstanding problem in those releases. |
vstinner
reviewed
Jan 10, 2019
pitrou
approved these changes
Jan 10, 2019
Member
pitrou
left a comment
There was a problem hiding this comment.
This looks fair to me. I'm sorry not noticing your (other) PR before.
Contributor
|
GH-11511 is a backport of this pull request to the 3.7 branch. |
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this pull request
Jan 10, 2019
miss-islington
added a commit
that referenced
this pull request
Jan 10, 2019
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR adds a note to the
multiprocessingmodule'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