Thanks to Detlef Lannert for pointing out a typo in the code that

uses _DummyMutex on platforms without threads.
This commit is contained in:
Tim Peters 2002-01-30 09:11:42 +00:00
parent c7349ee2c6
commit 40915bf8dd
1 changed files with 1 additions and 1 deletions

View File

@ -249,7 +249,7 @@ except ImportError:
release = acquire
_counter = _ThreadSafeCounter(_DummyMutex())
_tempdir_lock = _DummyMutes()
_tempdir_lock = _DummyMutex()
del _DummyMutex
else: