8000 [3.12] GH-112215: Backport C recursion changes by markshannon · Pull Request #115083 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

[3.12] GH-112215: Backport C recursion changes #115083

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
merged 10 commits into from
Feb 13, 2024
Prev Previous commit
Next Next commit
Add wasi test exception
  • Loading branch information
markshannon committed Feb 4, 2024
commit efede6689c9e6c93d6095dec9cdbe8c0e3a3be09
1 change: 1 addition & 0 deletions Lib/test/test_call.py
Original file line number Diff line number Diff line change
Expand Up @@ -932,6 +932,7 @@ def test_multiple_values(self):
class TestRecursion(unittest.TestCase):

@skip_on_s390x
@unittest.skipIf(is_wasi and Py_DEBUG, "requires deep stack")
def test_super_deep(self):

def recurse(n):
Expand Down
0