summaryrefslogtreecommitdiffstats
path: root/Lib/importlib
Commit message (Expand)AuthorAgeFilesLines
* Tests for case-senstivity were not being skipped for darwin when installed on aBrett Cannon2009-05-116-45/+37
* fix name againBenjamin Peterson2009-04-041-1/+1
* fix nameBenjamin Peterson2009-04-041-1/+1
* fix namingBenjamin Peterson2009-04-031-3/+3
* os.path.listdir -> os.listdirBenjamin Peterson2009-04-031-1/+1
* importlib.test.source.test_abc_loader was making a bad assumption that all fileBrett Cannon2009-04-021-16/+21
* Make a test in importlib have a more robust test value.Brett Cannon2009-04-021-1/+1
* Give a more informative message on an importlib test upon failure.Brett Cannon2009-04-021-1/+3
* Check that on a platform that is expected to have a case-insensitive filesystemBrett Cannon2009-04-021-1/+8
* Rip out a useless method that the superclass implements properly.Brett Cannon2009-04-011-19/+0
* Fix importlib.machinery.PathFinder.find_module() to essentially skip over NoneBrett Cannon2009-03-302-3/+23
* Add simple tests for __import__ for future optimizations to importlib.Brett Cannon2009-03-301-0/+82
* Document import's semantics for the language reference. This includes fillingBrett Cannon2009-03-211-7/+0
* Implement InspectLoader for FrozenImporter.Brett Cannon2009-03-154-9/+65
* Implement InspectLoader for BuiltinImporter.Brett Cannon2009-03-156-22/+80
* A few more docstring/API cleanups for importlib.Brett Cannon2009-03-154-53/+55
* Clean up docstring from importlib.util.module_for_loader.Brett Cannon2009-03-151-8/+8
* Finish properly hiding importlib implementation code.Brett Cannon2009-03-1212-55/+43
* Last big re-organization of importlib._bootstrap. Should actually be able to ...Brett Cannon2009-03-121-172/+173
* Do a little bit of reorganization on importlib._bootstrap.Brett Cannon2009-03-121-58/+69
* Make utility code in importlib._bootstrap private.Brett Cannon2009-03-121-32/+32
* Define importlib.__init__.__all__.Brett Cannon2009-03-121-1/+3
* Add a NOTE for importlib to fill in the docstrings for the ABCs.Brett Cannon2009-03-111-0/+2
* Implement importlib.util.set_loader: a decorator to automatically setBrett Cannon2009-03-106-11/+25
* Implement get_source for importlib.abc.PyLoader using source_path and get_data.Brett Cannon2009-03-103-10/+52
* Clean up importlib NOTES so it only contains short term goals.Brett Cannon2009-03-091-16/+0
* Introduce importlib.abc. The module contains various ABCs related to importsBrett Cannon2009-03-098-140/+555
* Remove a dead XXX comment.Brett Cannon2009-03-091-1/+0
* Fix importlib._bootstrap.PyPycLoader.load_module() to better handleBrett Cannon2009-03-091-3/+10
* Make importlib.test.source.util.write_bytecode reset sys.dont_write_bytecode.Brett Cannon2009-03-091-1/+5
* Minor changes to Python source base loader.Brett Cannon2009-03-081-3/+7
* Skip case-sensitivity tests for extension modules if _testcapi cannot be found.Brett Cannon2009-03-081-0/+2
* Rename importlib.util.set___package__ to set_package.Brett Cannon2009-03-043-8/+8
* Move importlib over to _io.Brett Cannon2009-03-041-5/+5
* Add a test for importlib.import_module.Brett Cannon2009-03-041-1/+10
* merge the io-c branch: C implementation of the io moduleBenjamin Peterson2009-03-042-4/+4
* Expose importlib.util.set___package__.Brett Cannon2009-03-023-22/+56
* Relocate source_mtime in importlib to PyPycLoader.Brett Cannon2009-02-211-13/+11
* Refactor source and bytecode file loaders in importlib so that thereBrett Cannon2009-02-214-150/+164
* Tweak the source/bytecode loader from importlib to use more of the PEP 302Brett Cannon2009-02-212-3/+3
* Separate out finder for source and source/bytecode.Brett Cannon2009-02-214-10/+21
* Do some cleanup in importlib:Brett Cannon2009-02-218-62/+56
* Add some notes about importlib and some API exposure cleanup.Brett Cannon2009-02-211-5/+7
* Minor NOTES changes for importlib.Brett Cannon2009-02-211-2/+1
* Outline a possible way to separate out source loading from bytecode loading.Brett Cannon2009-02-171-0/+21
* Implement the more specific PEP 302 semantics for loaders and what happens uponBrett Cannon2009-02-174-62/+126
* Document importlib.machinery.PathFinder.Brett Cannon2009-02-161-1/+5
* Change importlib.machinery.PathFinder to not have implicit semantics (that'sBrett Cannon2009-02-153-57/+72
* Add a NOTE about the new specific semantics for failed loads.Brett Cannon2009-02-151-0/+2
* Add a NOTE that alternative VMs should be supported by importlib in a nicerBrett Cannon2009-02-091-0/+4