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
Commit message (
Expand
)
Author
Age
Files
Lines
*
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
2
-3/+23
*
Add simple tests for __import__ for future optimizations to importlib.
Brett Cannon
2009-03-30
1
-0/+82
*
Document import's semantics for the language reference. This includes filling
Brett Cannon
2009-03-21
1
-7/+0
*
Implement InspectLoader for FrozenImporter.
Brett Cannon
2009-03-15
4
-9/+65
*
Implement InspectLoader for BuiltinImporter.
Brett Cannon
2009-03-15
6
-22/+80
*
A few more docstring/API cleanups for importlib.
Brett Cannon
2009-03-15
4
-53/+55
*
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
12
-55/+43
*
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
*
Define importlib.__init__.__all__.
Brett Cannon
2009-03-12
1
-1/+3
*
Add a NOTE for importlib to fill in the docstrings for the ABCs.
Brett Cannon
2009-03-11
1
-0/+2
*
Implement importlib.util.set_loader: a decorator to automatically set
Brett Cannon
2009-03-10
6
-11/+25
*
Implement get_source for importlib.abc.PyLoader using source_path and get_data.
Brett Cannon
2009-03-10
3
-10/+52
*
Clean up importlib NOTES so it only contains short term goals.
Brett Cannon
2009-03-09
1
-16/+0
*
Introduce importlib.abc. The module contains various ABCs related to imports
Brett Cannon
2009-03-09
8
-140/+555
*
Remove a dead XXX comment.
Brett Cannon
2009-03-09
1
-1/+0
*
Fix importlib._bootstrap.PyPycLoader.load_module() to better handle
Brett Cannon
2009-03-09
1
-3/+10
*
Make importlib.test.source.util.write_bytecode reset sys.dont_write_bytecode.
Brett Cannon
2009-03-09
1
-1/+5
*
Minor changes to Python source base loader.
Brett Cannon
2009-03-08
1
-3/+7
*
Skip case-sensitivity tests for extension modules if _testcapi cannot be found.
Brett Cannon
2009-03-08
1
-0/+2
*
Rename importlib.util.set___package__ to set_package.
Brett Cannon
2009-03-04
3
-8/+8
*
Move importlib over to _io.
Brett Cannon
2009-03-04
1
-5/+5
*
Add a test for importlib.import_module.
Brett Cannon
2009-03-04
1
-1/+10
*
merge the io-c branch: C implementation of the io module
Benjamin Peterson
2009-03-04
2
-4/+4
*
Expose importlib.util.set___package__.
Brett Cannon
2009-03-02
3
-22/+56
*
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
4
-150/+164
*
Tweak the source/bytecode loader from importlib to use more of the PEP 302
Brett Cannon
2009-02-21
2
-3/+3
*
Separate out finder for source and source/bytecode.
Brett Cannon
2009-02-21
4
-10/+21
*
Do some cleanup in importlib:
Brett Cannon
2009-02-21
8
-62/+56
*
Add some notes about importlib and some API exposure cleanup.
Brett Cannon
2009-02-21
1
-5/+7
*
Minor NOTES changes for importlib.
Brett Cannon
2009-02-21
1
-2/+1
*
Outline a possible way to separate out source loading from bytecode loading.
Brett Cannon
2009-02-17
1
-0/+21
*
Implement the more specific PEP 302 semantics for loaders and what happens upon
Brett Cannon
2009-02-17
4
-62/+126
*
Document importlib.machinery.PathFinder.
Brett Cannon
2009-02-16
1
-1/+5
*
Change importlib.machinery.PathFinder to not have implicit semantics (that's
Brett Cannon
2009-02-15
3
-57/+72
*
Add a NOTE about the new specific semantics for failed loads.
Brett Cannon
2009-02-15
1
-0/+2
*
Add a NOTE that alternative VMs should be supported by importlib in a nicer
Brett Cannon
2009-02-09
1
-0/+4
*
Add the missing importlib.test.extension.util.
Brett Cannon
2009-02-07
1
-0/+21
*
Update NOTES for importlib now that a replacement for functools.wraps is
Brett Cannon
2009-02-07
1
-1/+1
*
Create a simple substitute for functools.wraps to use in importlib._bootstrap.
Brett Cannon
2009-02-07
2
-5/+10
*
Factor out helper code from importlib.test.extension.test_path_hook.
Brett Cannon
2009-02-07
6
-42/+21
*
Add a note for importlib about backporting some of functools.wraps functional...
Brett Cannon
2009-02-07
1
-1/+4
*
Move importlib completely over to using rpartition and accepting the empty
Brett Cannon
2009-02-07
4
-15/+22
*
Move importlib's built-in importer to use rpartition for __package__.
Brett Cannon
2009-02-07
2
-2/+4
*
Move importlib's frozen importer over to rpartition for setting __package__.
Brett Cannon
2009-02-07
2
-5/+4
*
Rewrite the code implementing __import__ for importlib. Now it is much simpler
Brett Cannon
2009-02-07
8
-495/+106
[next]