summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorNed Deily <nad@python.org>2019-04-29 19:07:39 (GMT)
committerGitHub <noreply@github.com>2019-04-29 19:07:39 (GMT)
commit883dfc668f9730b00928730035b5dbd24b9da2a0 (patch)
tree388cfc683fdd48f5454d2e6455c104a2db28e0cd /Misc/NEWS.d
parentbe6dbfb43b89989ccc83fbc4c5234f50f44c47ad (diff)
downloadcpython-883dfc668f9730b00928730035b5dbd24b9da2a0.zip
cpython-883dfc668f9730b00928730035b5dbd24b9da2a0.tar.gz
cpython-883dfc668f9730b00928730035b5dbd24b9da2a0.tar.bz2
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.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/macOS/2019-04-29-10-54-14.bpo-34602.Lrl2zU.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/macOS/2019-04-29-10-54-14.bpo-34602.Lrl2zU.rst b/Misc/NEWS.d/next/macOS/2019-04-29-10-54-14.bpo-34602.Lrl2zU.rst
new file mode 100644
index 0000000..6f7ac88
--- /dev/null
+++ b/Misc/NEWS.d/next/macOS/2019-04-29-10-54-14.bpo-34602.Lrl2zU.rst
@@ -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.