-
-
Notifications
You must be signed in to change notification settings - Fork 31.4k
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-32137: The repr of deeply nested dict now raises a RecursionError #4570
bpo-32137: The repr of deeply nested dict now raises a RecursionError #4570
Conversation
instead of crashing due to a stack overflow. This perhaps fixes similar problems in other extension types.
Thanks @serhiy-storchaka for the PR 🌮🎉.. I'm working now to backport this PR to: 2.7, 3.6. |
GH-4689 is a backport of this pull request to the 3.6 branch. |
…pythonGH-4570) instead of crashing due to a stack overflow. This perhaps will fix similar problems in other extension types. (cherry picked from commit 1fb72d2)
Sorry, @serhiy-storchaka, I could not cleanly backport this to |
…nError (pythonGH-4570) instead of crashing due to a stack overflow. This perhaps will fix similar problems in other extension types. (cherry picked from commit 1fb72d2)
GH-5493 is a backport of this pull request to the 2.7 branch. |
…nError (pythonGH-4570) instead of crashing due to a stack overflow. This perhaps will fix similar problems in other extension types. (cherry picked from commit 1fb72d2) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
instead of crashing due to a stack overflow.
This perhaps fixes similar problems in other extension types.
https://bugs.python.org/issue32137