Message348876
| 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. |
|