summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-12-18 21:18:58 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-12-18 21:18:58 (GMT)
commitad8c461e2cd4ca15b72448952f7a6a1ab2325207 (patch)
treed4057c3bb41302c56910b6950ad3b5ca6fe4d25d /Lib
parent5f11a00056aba124cdeba717b68c4145f96bcfc7 (diff)
parent202b60640bd873f00ee121cb24ee4a6409eb8993 (diff)
downloadcpython-ad8c461e2cd4ca15b72448952f7a6a1ab2325207.zip
cpython-ad8c461e2cd4ca15b72448952f7a6a1ab2325207.tar.gz
cpython-ad8c461e2cd4ca15b72448952f7a6a1ab2325207.tar.bz2
Add sanity assertions in some import lock code (issue #15599).
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_threaded_import.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_threaded_import.py b/Lib/test/test_threaded_import.py
index 0528b13..93bfb2a 100644
--- a/Lib/test/test_threaded_import.py
+++ b/Lib/test/test_threaded_import.py
@@ -68,6 +68,7 @@ class Finder:
# Simulate some thread-unsafe behaviour. If calls to find_module()
# are properly serialized, `x` will end up the same as `numcalls`.
# Otherwise not.
+ assert imp.lock_held()
with self.lock:
self.numcalls += 1
x = self.x