-
-
Notifications
You must be signed in to change notification settings - Fork 30.6k
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
GH-112215: Increase C recursion limit for non debug builds #113397
GH-112215: Increase C recursion limit for non debug builds #113397
Conversation
🤖 New build scheduled with the buildbot fleet by @markshannon for commit a8c8eca 🤖 If you want to schedule another build, you need to add the 🔨 test-with-buildbots label again. |
!buildbot s390.* |
🤖 New build scheduled with the buildbot fleet by @markshannon for commit bbdac94 🤖 The command will test the builders whose names match following regular expression: The builders matched are:
|
Thanks @markshannon for the PR 🌮🎉.. I'm working now to backport this PR to: 3.12. |
Sorry, @markshannon, I could not cleanly backport this to
|
GH-113403 is a backport of this pull request to the 3.12 branch. |
Experimentation shows that we can safely increase the C recursion limit for non-debug builds considerably.
In hindsight, we should have done this when we introduced the C recursion limit. There is little value in having the same limit for debug and non-debug builds and the low limit needed for debug builds is too restrictive for release builds.
@functools.cache
#112215