Kaydet (Commit) 9ab91c60 authored tarafından Charles-François Natali's avatar Charles-François Natali

Issue #13894: Skip test_threading.CRLockTests if _CRLock isn't available. Patch

by Matt Joiner.
......@@ -738,6 +738,7 @@ class LockTests(lock_tests.LockTests):
class PyRLockTests(lock_tests.RLockTests):
locktype = staticmethod(threading._PyRLock)
@unittest.skipIf(threading._CRLock is None, 'RLock not implemented in C')
class CRLockTests(lock_tests.RLockTests):
locktype = staticmethod(threading._CRLock)
......
......@@ -492,6 +492,7 @@ Orjan Johansen
Fredrik Johansson
Gregory K. Johnson
Simon Johnston
Matt Joiner
Thomas Jollans
Nicolas Joly
Evan Jones
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment