-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
[3.9] bpo-43048: RecursionError traceback RecursionError bugfix for cpy3.9 (GH-24460) #24460
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
Merged
ambv
merged 17 commits into
python:3.9
from
vlad17:bpo-43048-recrusionerror-traceback-recursionerror-backport
Jul 12, 2021
Merged
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
9d3b7e2
bpo-43048: Catch RecursionError traceback RecursionError
vlad17 b4dcb16
📜🤖 Added by blurb_it.
blurb-it[bot] cdfef13
iritkatriel comments
vlad17 c87b34b
bonus bug: cause recursion
vlad17 43c8a0b
Merge branch 'bpo-43048-recrusionerror-traceback-recursionerror-backp…
vlad17 e1243dd
simplify exception
vlad17 e13a98b
test format_exception over TracebackException to validate recursion i…
vlad17 8550dbd
add stub
vlad17 1ac601d
iritkatriel comments: remove no-op, fix indent, concise truncation me…
vlad17 4d028b3
goodbye
vlad17 567b478
retrigger checks: macos test failure is an unrelated connection flake
vlad17 31782e5
single type of truncation across cause/context
vlad17 041fcfb
don't print context if you have (possibly truncated) cause
vlad17 f93d09f
just have one try/except
vlad17 c0ceb24
no edit
vlad17 0b29f89
update news
vlad17 1b585aa
singular recursionerror
vlad17 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
don't print context if you have (possibly truncated) cause
- Loading branch information
commit 041fcfbe3a72bc4f0893f4c6bc2836cbe8b5e9a0
There are no files selected for viewing
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
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.
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.
If recursion into constructing cause exceeded the recursion limit then surely the call to construct context will too. Why do we need to try blocks?