Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32k
Fix some sphinx warnings (#9)#81
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Merged
Merged
Uh oh!
There was an error while loading.Please reload this page.
Conversation
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
* Fix some deprecation warnings in Doc/conf.py* Fix an rst error in Misc/NEWSContributed by Ryan Gonzalez@kirbyfan64(cherry picked from commite7ffb99)
berkerpeksag approved these changesFeb 14, 2017
akruis pushed a commit to akruis/cpython that referenced this pull requestSep 9, 2017
…er shutdown codeFix the implementation to work as documented if a thread dies. NowStackless kills only tasklets with a nesting level > 0. During interpretershutdown stackless additionally kills daemon threads, if they execute Python code orswitch tasklets. This prevents access violations after clearing the thread states.Add a 1ms sleep for each daemon thread. This way the thread gets a betterchance to run. Thanks to Kristján Valur Jónsson for suggesting this improvement.Add a test case for a C assertion violation during thread shutdown.Add some explanatory comments to the shutdown test case.Thanks to Christian Tismer for the sugestion.https://bitbucket.org/stackless-dev/stackless/issues/81https://bitbucket.org/stackless-dev/stackless/issues/89(grafted from 2cc41427a347a1ebec4eedc3db06a3664e67f798, 1388a2003957,6140f5aaca2c and edc9b92ec457)
akruis pushed a commit to akruis/cpython that referenced this pull requestSep 9, 2017
…er versions of Python 3.The 2.7 detector hook (cleanup of codecs search path) does not work with Python 3.3 and later.Adapt the test cases to use a different hook (builtins._).
akruis pushed a commit to akruis/cpython that referenced this pull requestSep 9, 2017
…during shutdownSince issuepython#81 Stackless 2.7 raises TaskletExit in daemon threads during interpreter shutdown.This prevents later crashes (i.e. segfaults). In Python 3 this precautions are no longer requiredand break the CPython test case test.test_threading.ThreadJoinOnShutdown.test_6_daemon_threads.This changeset removes the code, that raises TaskletExit.
akruis pushed a commit to akruis/cpython that referenced this pull requestSep 9, 2017
akruis pushed a commit to akruis/cpython that referenced this pull requestSep 9, 2017
This was referencedFeb 11, 2025
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.
Contributed by Ryan Gonzalez@kirbyfan64
(cherry picked from commite7ffb99)