From 40915bf8dd035b193413dc149a58db4f54a785aa Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Wed, 30 Jan 2002 09:11:42 +0000 Subject: [PATCH] Thanks to Detlef Lannert for pointing out a typo in the code that uses _DummyMutex on platforms without threads. --- Lib/tempfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/tempfile.py b/Lib/tempfile.py index 99177f539f12..b981084b8b10 100644 --- a/Lib/tempfile.py +++ b/Lib/tempfile.py @@ -249,7 +249,7 @@ except ImportError: release = acquire _counter = _ThreadSafeCounter(_DummyMutex()) - _tempdir_lock = _DummyMutes() + _tempdir_lock = _DummyMutex() del _DummyMutex else: -- 2.47.3