Permalink
Please
sign in to comment.
Browse files
bpo-34602: Avoid failures setting macOS stack resource limit (GH-13011)
Under some conditions the earlier fix for bpo-18075, "Infinite recursion tests triggering a segfault on Mac OS X", now causes failures on macOS when attempting to change stack limit with resource.setrlimit resource.RLIMIT_STACK, like regrtest does when running the test suite. The reverted change had specified a non-default stack size when linking the python executable on macOS. As of macOS 10.14.4, the previous code causes a hard failure when running tests, although similar failures had been seen under some conditions under some earlier systems. For now, revert the original change and resume using the default stack size when linking the interpreter.
- Loading branch information...
Showing
with
3 additions
and 12 deletions.
| @@ -0,0 +1,3 @@ | |||
| Avoid failures setting macOS stack resource limit with resource.setrlimit. | |||
| This reverts an earlier fix for bpo-18075 which forced a non-default stack | |||
| size when building the interpreter executable on macOS. | |||
0 comments on commit
883dfc6