]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-34602: Avoid failures setting macOS stack resource limit (GH-13011)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 29 Apr 2019 19:27:36 +0000 (12:27 -0700)
committerGitHub <noreply@github.com>
Mon, 29 Apr 2019 19:27:36 +0000 (12:27 -0700)
commit52a5b71063af68c42b048095c4e555e93257f151
tree910ffece0b32380f1228ae6f8d6ae4731adc9318
parent5e09a9973b46cd6361a25877e0ca8dd0ab82d678
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.
(cherry picked from commit 883dfc668f9730b00928730035b5dbd24b9da2a0)

Co-authored-by: Ned Deily <nad@python.org>
Misc/NEWS.d/next/macOS/2019-04-29-10-54-14.bpo-34602.Lrl2zU.rst [new file with mode: 0644]
configure
configure.ac