index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
importlib
/
_bootstrap.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
no need to translate newlines in python code anymore
Benjamin Peterson
2009-11-13
1
-15/+0
*
When trying to write new bytecode, importlib was not catching the IOError
Brett Cannon
2009-11-07
1
-2/+2
*
Trying to import a submodule from another module and not a package was raising
Brett Cannon
2009-08-30
1
-1/+5
*
When the globals argument to importlib.__import__() contained any value for
Brett Cannon
2009-08-30
1
-4/+4
*
Raise TypeError if the name given to importlib.__import__() lacks an rpartition
Brett Cannon
2009-08-30
1
-0/+2
*
Allow importlib.__import__ to accept any iterable for fromlist. Discovered when
Brett Cannon
2009-08-30
1
-0/+1
*
Have importlib raise ImportError if None is found in sys.modules. This matches
Brett Cannon
2009-08-30
1
-1/+6
*
Implement the PEP 302 protocol for get_filename() as
Brett Cannon
2009-07-20
1
-17/+21
*
Rip out a useless method that the superclass implements properly.
Brett Cannon
2009-04-01
1
-19/+0
*
Fix importlib.machinery.PathFinder.find_module() to essentially skip over None
Brett Cannon
2009-03-30
1
-3/+4
*
Implement InspectLoader for FrozenImporter.
Brett Cannon
2009-03-15
1
-2/+29
*
Implement InspectLoader for BuiltinImporter.
Brett Cannon
2009-03-15
1
-2/+29
*
A few more docstring/API cleanups for importlib.
Brett Cannon
2009-03-15
1
-12/+16
*
Clean up docstring from importlib.util.module_for_loader.
Brett Cannon
2009-03-15
1
-8/+8
*
Finish properly hiding importlib implementation code.
Brett Cannon
2009-03-12
1
-14/+9
*
Last big re-organization of importlib._bootstrap. Should actually be able to ...
Brett Cannon
2009-03-12
1
-172/+173
*
Do a little bit of reorganization on importlib._bootstrap.
Brett Cannon
2009-03-12
1
-58/+69
*
Make utility code in importlib._bootstrap private.
Brett Cannon
2009-03-12
1
-32/+32
*
Implement importlib.util.set_loader: a decorator to automatically set
Brett Cannon
2009-03-10
1
-3/+15
*
Implement get_source for importlib.abc.PyLoader using source_path and get_data.
Brett Cannon
2009-03-10
1
-0/+20
*
Introduce importlib.abc. The module contains various ABCs related to imports
Brett Cannon
2009-03-09
1
-8/+2
*
Fix importlib._bootstrap.PyPycLoader.load_module() to better handle
Brett Cannon
2009-03-09
1
-3/+10
*
Minor changes to Python source base loader.
Brett Cannon
2009-03-08
1
-3/+7
*
Rename importlib.util.set___package__ to set_package.
Brett Cannon
2009-03-04
1
-4/+4
*
Move importlib over to _io.
Brett Cannon
2009-03-04
1
-5/+5
*
merge the io-c branch: C implementation of the io module
Benjamin Peterson
2009-03-04
1
-2/+2
*
Relocate source_mtime in importlib to PyPycLoader.
Brett Cannon
2009-02-21
1
-13/+11
*
Refactor source and bytecode file loaders in importlib so that there
Brett Cannon
2009-02-21
1
-111/+149
*
Tweak the source/bytecode loader from importlib to use more of the PEP 302
Brett Cannon
2009-02-21
1
-3/+1
*
Separate out finder for source and source/bytecode.
Brett Cannon
2009-02-21
1
-2/+10
*
Do some cleanup in importlib:
Brett Cannon
2009-02-21
1
-53/+47
*
Implement the more specific PEP 302 semantics for loaders and what happens upon
Brett Cannon
2009-02-17
1
-29/+24
*
Change importlib.machinery.PathFinder to not have implicit semantics (that's
Brett Cannon
2009-02-15
1
-23/+37
*
Create a simple substitute for functools.wraps to use in importlib._bootstrap.
Brett Cannon
2009-02-07
1
-3/+10
*
Move importlib completely over to using rpartition and accepting the empty
Brett Cannon
2009-02-07
1
-9/+18
*
Move importlib's built-in importer to use rpartition for __package__.
Brett Cannon
2009-02-07
1
-1/+3
*
Move importlib's frozen importer over to rpartition for setting __package__.
Brett Cannon
2009-02-07
1
-4/+3
*
Rewrite the code implementing __import__ for importlib. Now it is much simpler
Brett Cannon
2009-02-07
1
-308/+81
*
Initial, untested stab at writing a common denominator function for __import__
Brett Cannon
2009-02-06
1
-0/+43
*
Add tests for using sys.path_hooks by importlib.machinery.PathFinder.
Brett Cannon
2009-02-05
1
-1/+1
*
Rename importlib._bootstrap.SysPathFinder to PathFinder and expose off of
Brett Cannon
2009-02-05
1
-18/+16
*
To prevent another screw-up on my part where my prototype gets lost thanks to
Brett Cannon
2009-02-02
1
-0/+76
*
Simplify write_bytecode for importlib.
Brett Cannon
2009-02-01
1
-30/+7
*
Ditch read_source() and read_bytecode() and replace with *_path() and
Brett Cannon
2009-02-01
1
-39/+8
*
Expose source_path and bytecode_path on _PyFileLoader.
Brett Cannon
2009-02-01
1
-9/+12
*
Fix importlib.machinery.FrozenImporter.load_module() to set __package__
Brett Cannon
2009-02-01
1
-1/+6
*
Document both importlib.machinery.BuiltinImporter and FrozenImporter.
Brett Cannon
2009-01-25
1
-2/+2
*
Add importlib.machinery with its first tenants, BuitinImporter and
Brett Cannon
2009-01-22
1
-67/+24
*
Fix a typo in some code that is not tested or supported yet.
Brett Cannon
2009-01-19
1
-1/+1
*
Add initial implementation of importlib. See the NOTES files for what is
Brett Cannon
2009-01-18
1
-0/+997