8000 GH-118095: Use broader specializations in tier 1, for better tier 2 support of calls. by markshannon · Pull Request #118322 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

GH-118095: Use broader specializations in tier 1, for better tier 2 support of calls. #118322

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 19 commits into from
May 4, 2024
Merged
Changes from 1 commit
Commits
< 8000 details class="diffbar-item details-reset details-overlay" > File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Lower WASI C recursion limit again
  • Loading branch information
markshannon committed May 3, 2024
commit 0b4077327d84275682adfc7f54053c7651cdb8da
< 8B07 button type="button" class="btn-octicon js-details-target" aria-label="Toggle diff contents" aria-expanded="true" style="width: 22px;">
2 changes: 1 addition & 1 deletion Include/cpython/pystate.h
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ struct _ts {
// higher stack memory usage than a release build: use a lower limit.
# if defined(__wasi__)
// Based on wasmtime 16.
# define Py_C_RECURSION_LIMIT 400
# define Py_C_RECURSION_LIMIT 350
# else
# define Py_C_RECURSION_LIMIT 500
# endif
Expand Down
0