summaryrefslogtreecommitdiff
path: root/Lib/test/test_importlib/frozen
Commit message (Collapse)AuthorAgeFilesLines
* Issue #23277: Remove unused sys and os importsBerker Peksag2016-04-241-2/+0
| | | | Patch by Jon Dufresne.
* Closes #22002: Merge with 3.4Zachary Ware2014-07-232-10/+19
|\
| * Issue #21503: Use test_both() consistently in test_importlib.Eric Snow2014-05-162-10/+19
| |
* | Issue #22002: Make full use of test discovery in test sub-packages.Zachary Ware2014-07-232-12/+8
|/ | | | | | Adds `load_package_tests` function to test.support, uses it in test_asyncio, test_email, test_json, test_tools, test_importlib and all test_importlib sub-packages to implement test discovery.
* Issue 19713: Add PEP 451-related deprecations.Eric Snow2014-01-061-8/+34
|
* Implement PEP 451 (ModuleSpec).Eric Snow2013-11-222-10/+114
|
* Issue #16803: test.test_importlib.frozen now runs both frozen and source codeBrett Cannon2013-11-082-31/+33
|
* Issue #16803: Stop having test.test_importlib.abc ABCs inherit fromBrett Cannon2013-10-252-2/+2
| | | | | unittest.TestCase in prep of running tests under frozen and source importlib.
* Issue #17177: stop using imp in test_importlibBrett Cannon2013-06-151-4/+6
|
* Issue #18065: For frozen packages set __path__ to [].Brett Cannon2013-05-311-1/+1
| | | | | | | Previously __path__ was set to [__name__], but that could lead to bad results if someone managed to circumvent the frozen importer and somehow ended up with a finder that thought __name__ was a legit directory/location.
* Issue #15168: Move importlb.test to test.test_importlib.Brett Cannon2012-07-203-0/+181
This should make the Linux distros happy as it is now easier to leave importlib's tests out of their base Python distribution.