Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #15168: Move importlb.test to test.test_importlib. | Brett Cannon | 2012-07-20 | 1 | -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. Smith | 2012-06-28 | 1 | -1/+1 |
| | |||||
* | Prevent test_inspect from keeping alive a ton of frames and local variables ↵ | Antoine Pitrou | 2012-06-17 | 1 | -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 Pitrou | 2012-05-17 | 1 | -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. |