Thanks to Detlef Lannert for pointing out a typo in the code that
uses _DummyMutex on platforms without threads.
This commit is contained in:
parent
c7349ee2c6
commit
40915bf8dd
|
@ -249,7 +249,7 @@ except ImportError:
|
|||
release = acquire
|
||||
|
||||
_counter = _ThreadSafeCounter(_DummyMutex())
|
||||
_tempdir_lock = _DummyMutes()
|
||||
_tempdir_lock = _DummyMutex()
|
||||
del _DummyMutex
|
||||
|
||||
else:
|
||||
|
|
Loading…
Reference in New Issue