summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_importhooks.py
Commit message (Collapse)AuthorAgeFilesLines
* Actually run these tests from regrtest.py.Neal Norwitz2003-02-171-1/+3
| | | | | | There was no test_main() and the main body was protected by if __name__ == '__main__' so the test didn't happen on import either.
* PEP 302 + zipimport:Just van Rossum2002-12-301-0/+204
- new import hooks in import.c, exposed in the sys module - new module called 'zipimport' - various changes to allow bootstrapping from zip files I hope I didn't break the Windows build (or anything else for that matter), but then again, it's been sitting on sf long enough... Regarding the latest discussions on python-dev: zipimport sets pkg.__path__ as specified in PEP 273, and likewise, sys.path item such as /path/to/Archive.zip/subdir/ are supported again.