We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d8f55d commit 2fcfca2Copy full SHA for 2fcfca2
src/ecdsa/test_rw_lock.py
@@ -2,7 +2,10 @@
2
# https://code.activestate.com/recipes/577803-reader-writer-lock-with-priority-for-writers/
3
# released under the MIT licence
4
5
-import unittest
+try:
6
+ import unittest2 as unittest
7
+except ImportError:
8
+ import unittest
9
import threading
10
import time
11
import copy
0 commit comments