summaryrefslogtreecommitdiffstats
path: root/Lib/importlib
Commit message (Expand)AuthorAgeFilesLines
* 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
* Add the missing importlib.test.extension.util.Brett Cannon2009-02-071-0/+21
* Update NOTES for importlib now that a replacement for functools.wraps isBrett Cannon2009-02-071-1/+1
* Create a simple substitute for functools.wraps to use in importlib._bootstrap.Brett Cannon2009-02-072-5/+10
* Factor out helper code from importlib.test.extension.test_path_hook.Brett Cannon2009-02-076-42/+21
* Add a note for importlib about backporting some of functools.wraps functional...Brett Cannon2009-02-071-1/+4
* Move importlib completely over to using rpartition and accepting the emptyBrett Cannon2009-02-074-15/+22
* Move importlib's built-in importer to use rpartition for __package__.Brett Cannon2009-02-072-2/+4
* Move importlib's frozen importer over to rpartition for setting __package__.Brett Cannon2009-02-072-5/+4
* Rewrite the code implementing __import__ for importlib. Now it is much simplerBrett Cannon2009-02-078-495/+106
* Initial, untested stab at writing a common denominator function for __import__Brett Cannon2009-02-062-0/+56
* Finish implementing tests for importlib.machinery.PathFinder by testing thatBrett Cannon2009-02-062-14/+31
* Add tests for using sys.path_hooks by importlib.machinery.PathFinder.Brett Cannon2009-02-052-3/+11
* Implement test for sys.path_importer_cache having None forBrett Cannon2009-02-051-2/+14
* Update NOTES for importlib about PathFinder.Brett Cannon2009-02-051-0/+2
* Begin writing tests for importlib.machinery.PathFinder.Brett Cannon2009-02-051-1/+57
* Check in the fact that importlib.machinery.PathFinder now exists.Brett Cannon2009-02-051-0/+1
* Rename importlib._bootstrap.SysPathFinder to PathFinder and expose off ofBrett Cannon2009-02-051-18/+16
* Add some notes for importlib to package up what is in Python 2.7 as well as m...Brett Cannon2009-02-021-0/+8
* To prevent another screw-up on my part where my prototype gets lost thanks toBrett Cannon2009-02-021-0/+76
* Note to move __package__ stuff over to rpartition to make Nick happy. Also makeBrett Cannon2009-02-021-0/+4
* Simplify write_bytecode for importlib.Brett Cannon2009-02-011-30/+7
* Update importlib notes.Brett Cannon2009-02-011-12/+11
* Ditch read_source() and read_bytecode() and replace with *_path() andBrett Cannon2009-02-012-40/+8
* Expose source_path and bytecode_path on _PyFileLoader.Brett Cannon2009-02-012-11/+13
* Remove an outdated todo item from importlib.Brett Cannon2009-02-011-6/+0
* Move import semantic util code to importlib.test.import_.util.Brett Cannon2009-02-0110-92/+99
* Rename importlib.test.support to importlib.test.util.Brett Cannon2009-02-0122-191/+163
* Do not execute the .pyc/.pyo files as well as the .py files.Brett Cannon2009-02-011-1/+4
* Split out support code that is specific to source tests out ofBrett Cannon2009-02-018-113/+123
* Move source loader tests (including reload tests) over toBrett Cannon2009-02-013-77/+72
* Fix importlib.machinery.FrozenImporter.load_module() to set __package__Brett Cannon2009-02-013-20/+57
* Move extension module loader tests over to importlib.test.abc.LoaderTests.Brett Cannon2009-02-012-4/+22