Uh oh!
There was an error while loading. Please reload this page.
bpo-45554: Document multiprocessing.Process.exitcode values - #30142
Merged
Conversation
Uh oh!
There was an error while loading. Please reload this page.
This PR is stale because it has been open for 30 days with no activity. |
pitrou
approved these changes
Jan 18, 2022
miss-islington
commented
Jan 18, 2022
Contributor
@jmarshall: Status check is done, and it's a success ✅ . |
miss-islington
commented
Jan 18, 2022
Contributor
Thanks @jmarshall for the PR 🌮🎉.. I'm working now to backport this PR to: 3.9, 3.10. |
miss-islington pushed a commit
to miss-islington/cpython
that referenced
this pull request
Jan 18, 2022
…-30142) This addresses [bpo-45554]() by expanding the `exitcode` documentation to also describe what `exitcode` will be in cases of normal termination, `sys.exit()` called, and on uncaught exceptions. Automerge-Triggered-By: GH:pitrou (cherry picked from commit 3852269) Co-authored-by: John Marshall <jmarshall@hey.com>
bedevere-bot
commented
Jan 18, 2022
GH-30674 is a backport of this pull request to the 3.10 branch. |
miss-islington pushed a commit
to miss-islington/cpython
that referenced
this pull request
Jan 18, 2022
…-30142) This addresses [bpo-45554]() by expanding the `exitcode` documentation to also describe what `exitcode` will be in cases of normal termination, `sys.exit()` called, and on uncaught exceptions. Automerge-Triggered-By: GH:pitrou (cherry picked from commit 3852269) Co-authored-by: John Marshall <jmarshall@hey.com>
bedevere-bot
commented
Jan 18, 2022
GH-30675 is a backport of this pull request to the 3.9 branch. |
jmarshall
commented
Jan 18, 2022
ContributorAuthor
miss-islington added a commit
that referenced
this pull request
Jan 18, 2022
This addresses [bpo-45554]() by expanding the `exitcode` documentation to also describe what `exitcode` will be in cases of normal termination, `sys.exit()` called, and on uncaught exceptions. Automerge-Triggered-By: GH:pitrou (cherry picked from commit 3852269) Co-authored-by: John Marshall <jmarshall@hey.com>
miss-islington added a commit
that referenced
this pull request
Jan 18, 2022
…-30142) (GH-30675) This addresses [[bpo-45554]()]() by expanding the `exitcode` documentation to also describe what `exitcode` will be in cases of normal termination, `sys.exit()` called, and on uncaught exceptions. (cherry picked from commit 3852269) Co-authored-by: John Marshall <jmarshall@hey.com>
hello-adam pushed a commit
to hello-adam/cpython
that referenced
this pull request
Jun 2, 2022
…thonGH-30142) (pythonGH-30675) This addresses [[bpo-45554]()]() by expanding the `exitcode` documentation to also describe what `exitcode` will be in cases of normal termination, `sys.exit()` called, and on uncaught exceptions. (cherry picked from commit 3852269) Co-authored-by: John Marshall <jmarshall@hey.com>
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 freeto 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 addresses bpo-45554 by expanding the
exitcodedocumentation to also describe whatexitcodewill be in cases of normal termination,sys.exit()called, and on uncaught exceptions.https://bugs.python.org/issue45554
Automerge-Triggered-By: GH:pitrou