diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2019-08-01 07:43:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-01 07:43:07 +0200 |
commit | 1a057bab0f18d6ad843ce321d1d77a4819497ae4 (patch) | |
tree | 4018de28edc28e3bcd8564de6d790b7ad4384bbb /Lib/test/test_threading.py | |
parent | ed5e8e06cbf766e89d6c58a882ee024abb5b2ed7 (diff) | |
download | cpython-git-1a057bab0f18d6ad843ce321d1d77a4819497ae4.tar.gz |
bpo-18049: Sync thread stack size to main thread size on macOS (GH-14748)
This changeset increases the default size of the stack
for threads on macOS to the size of the stack
of the main thread and reenables the relevant
recursion test.
Diffstat (limited to 'Lib/test/test_threading.py')
-rw-r--r-- | Lib/test/test_threading.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py index a99b8eca2b..1466d25e94 100644 --- a/Lib/test/test_threading.py +++ b/Lib/test/test_threading.py @@ -1057,8 +1057,6 @@ class ThreadingExceptionTests(BaseTestCase): lock = threading.Lock() self.assertRaises(RuntimeError, lock.release) - @unittest.skipUnless(sys.platform == 'darwin' and test.support.python_is_optimized(), - 'test macosx problem') def test_recursion_limit(self): # Issue 9670 # test that excessive recursion within a non-main thread causes |