Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
6b671b25
Commit
6b671b25
authored
Jan 28, 2012
by
Charles-François Natali
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #13894: Skip test_threading.CRLockTests if _CRLock isn't available. Patch
by Matt Joiner.
parent
261896b5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
+2
-0
Lib/test/test_threading.py
Lib/test/test_threading.py
+1
-0
Misc/ACKS
Misc/ACKS
+1
-0
No files found.
Lib/test/test_threading.py
View file @
6b671b25
...
@@ -726,6 +726,7 @@ class LockTests(lock_tests.LockTests):
...
@@ -726,6 +726,7 @@ class LockTests(lock_tests.LockTests):
class
PyRLockTests
(
lock_tests
.
RLockTests
):
class
PyRLockTests
(
lock_tests
.
RLockTests
):
locktype
=
staticmethod
(
threading
.
_PyRLock
)
locktype
=
staticmethod
(
threading
.
_PyRLock
)
@
unittest
.
skipIf
(
threading
.
_CRLock
is
None
,
'RLock not implemented in C'
)
class
CRLockTests
(
lock_tests
.
RLockTests
):
class
CRLockTests
(
lock_tests
.
RLockTests
):
locktype
=
staticmethod
(
threading
.
_CRLock
)
locktype
=
staticmethod
(
threading
.
_CRLock
)
...
...
Misc/ACKS
View file @
6b671b25
...
@@ -453,6 +453,7 @@ Orjan Johansen
...
@@ -453,6 +453,7 @@ Orjan Johansen
Fredrik Johansson
Fredrik Johansson
Gregory K. Johnson
Gregory K. Johnson
Simon Johnston
Simon Johnston
Matt Joiner
Thomas Jollans
Thomas Jollans
Nicolas Joly
Nicolas Joly
Evan Jones
Evan Jones
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment