summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/test/test_locks.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #15168: Move importlb.test to test.test_importlib.Brett Cannon2012-07-201-115/+0
| | | | | This should make the Linux distros happy as it is now easier to leave importlib's tests out of their base Python distribution.
* Use assertIsNone. Thanks Terry Reedy.Eric V. Smith2012-06-281-1/+1
|
* Prevent test_inspect from keeping alive a ton of frames and local variables ↵Antoine Pitrou2012-06-171-1/+1
| | | | | | by way of a global variable keeping a reference to a traceback. Should fix some buildbot failures.
* Issue #9260: A finer-grained import lock.Antoine Pitrou2012-05-171-0/+115
Most of the import sequence now uses per-module locks rather than the global import lock, eliminating well-known issues with threads and imports.