This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ronaldoussoren
Recipients matrixise, miss-islington, ned.deily, ronaldoussoren, steve.dower, vstinner
Date 2019-08-01.20:08:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1564690101.41.0.450390686468.issue18049@roundup.psfhosted.org>
In-reply-to
Content
The patch to fix this should be:

diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py
index 1466d25e94..658bc1c7a0 100644
--- a/Lib/test/test_threading.py
+++ b/Lib/test/test_threading.py
@@ -1057,6 +1057,7 @@ class ThreadingExceptionTests(BaseTestCase):
         lock = threading.Lock()
         self.assertRaises(RuntimeError, lock.release)
 
+    @unittest.skipUnless(sys.platform == 'darwin', 'test macos problem')
     def test_recursion_limit(self):
         # Issue 9670
         # test that excessive recursion within a non-main thread causes

---

PR will follow after I've run tests locally, I'll probably create the PR in the morning.
History
Date User Action Args
2019-08-01 20:08:21ronaldoussorensetrecipients: + ronaldoussoren, vstinner, ned.deily, steve.dower, matrixise, miss-islington
2019-08-01 20:08:21ronaldoussorensetmessageid: <1564690101.41.0.450390686468.issue18049@roundup.psfhosted.org>
2019-08-01 20:08:21ronaldoussorenlinkissue18049 messages
2019-08-01 20:08:21ronaldoussorencreate