cpython: 5cf181df7bea (original) (raw)
Mercurial > cpython
changeset 74665:5cf181df7bea 3.2
Issue #13894: Skip test_threading.CRLockTests if _CRLock isn't available. Patch by Matt Joiner. [#13894]
Charles-François Natali neologix@free.fr | |
---|---|
date | Sat, 28 Jan 2012 11:36:04 +0100 |
parents | 5b8800004955 |
children | 279b6d778663 10c79f29e417 |
files | Lib/test/test_threading.py Misc/ACKS |
diffstat | 2 files changed, 2 insertions(+), 0 deletions(-)[+] [-] Lib/test/test_threading.py 1 Misc/ACKS 1 |
line wrap: on
line diff
--- a/Lib/test/test_threading.py +++ b/Lib/test/test_threading.py @@ -726,6 +726,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)
--- a/Misc/ACKS +++ b/Misc/ACKS @@ -453,6 +453,7 @@ Orjan Johansen Fredrik Johansson Gregory K. Johnson Simon Johnston +Matt Joiner Thomas Jollans Nicolas Joly Evan Jones