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
*
Optimize importlib's case-sensitivity check by wasting as little time as poss...
Brett Cannon
2012-02-17
1
-13/+23
*
Have importlib use os.replace() for atomic renaming.
Brett Cannon
2012-02-17
1
-17/+6
*
Tweak the handling of the empty string in sys.path for importlib.
Brett Cannon
2012-02-16
1
-1/+3
*
importlib.__import__() now raises ValueError when level < 0.
Brett Cannon
2012-02-16
1
-0/+2
*
Refactor importlib.__import__() and _gcd_import() to facilitate using
Brett Cannon
2012-02-16
1
-71/+130
*
Bring importlib in line w/ changes made in my personal bootstrap branch in th...
Brett Cannon
2012-02-14
1
-1/+15
*
simplify
Philip Jenvey
2012-02-10
1
-4/+1
*
Undo a bad mq management thingy.
Brett Cannon
2012-02-09
1
-44/+0
*
Whitespace normalization.
Brett Cannon
2012-02-08
1
-1/+0
*
Use the cwd when the empty string is found in sys.path. This leads to
Brett Cannon
2012-02-08
1
-1/+45
*
Move setup code from importlib.__init__ to
Brett Cannon
2012-02-08
1
-0/+44
*
Don't fail in the face of a lacking attribute when wrapping a
Brett Cannon
2012-02-08
1
-1/+2
*
Relocate importlib._case_ok to importlib._bootstrap.
Brett Cannon
2012-01-27
1
-0/+27
*
Move some code from importlib.__init__ to importlib._bootstrap that
Brett Cannon
2012-01-25
1
-4/+35
*
Issue #13588: Rename decorators in importlib.
Brett Cannon
2012-01-16
1
-18/+18
*
Issue #13645: pyc files now contain the size of the corresponding source
Antoine Pitrou
2012-01-13
1
-15/+42
*
Issue #13593: updating the importlib utility decorators for __qualname__.
Meador Inge
2011-12-15
1
-1/+1
*
Issue #13591: import_module potentially imports a module twice.
Meador Inge
2011-12-15
1
-1/+3
|
\
|
*
Issue #13591: import_module potentially imports a module twice.
Meador Inge
2011-12-15
1
-1/+3
*
|
Issue #13392: Writing a pyc file should now be atomic under Windows as well.
Antoine Pitrou
2011-11-15
1
-15/+20
*
|
Issue #13303: Fix bytecode file default permission.
Charles-François Natali
2011-11-10
1
-1/+1
*
|
Issue #13303: Fix a race condition in the bytecode file creation.
Charles-François Natali
2011-10-31
1
-3/+4
*
|
Simplify and remove few dependencies on 'errno', thanks to PEP 3151.
Florent Xicluna
2011-10-28
1
-11/+5
*
|
Silence the FileExistsError which can be raised because of the O_EXCL flag
Antoine Pitrou
2011-10-19
1
-7/+7
*
|
Issue #13146: Writing a pyc file is now atomic under POSIX.
Antoine Pitrou
2011-10-17
1
-3/+23
*
|
Make importlib compatible with __import__ by "fixing" code.co_filename
Brett Cannon
2011-03-23
1
-0/+1
*
|
Have importlib use the repr of a module name in error messages.
Brett Cannon
2011-03-23
1
-1/+1
*
|
#11515: Merge with 3.2.
Ezio Melotti
2011-03-15
1
-2/+2
|
\
\
|
|
/
|
*
#11515: Merge with 3.1.
Ezio Melotti
2011-03-15
1
-2/+2
|
|
\
|
|
*
#11515: fix several typos. Patch by Piotr Kasprzyk.
Ezio Melotti
2011-03-15
1
-1/+1
|
|
*
Merged revisions 78242 via svnmerge from
Brett Cannon
2010-02-19
1
-5/+10
|
|
*
Merged revisions 76146 via svnmerge from
Brett Cannon
2009-11-07
1
-2/+2
|
|
*
Merged revisions 74584 via svnmerge from
Brett Cannon
2009-08-30
1
-1/+6
*
|
|
Skip test if zlib not present. Closes #11498. Patch by Natalia B. Bidart.
Eric V. Smith
2011-03-14
1
-1/+1
*
|
|
Typos.
Eric V. Smith
2011-03-14
1
-2/+2
|
/
/
*
|
Issue 10899: Remove function type annotations from the stdlib
Raymond Hettinger
2011-01-13
1
-3/+3
*
|
Issue 10899: Remove function type annotations from the stdlib
Raymond Hettinger
2011-01-13
1
-2/+2
*
|
Fix a minor inconsistency in capitalization for the 'No module named' exception
Brett Cannon
2010-11-18
1
-3/+5
*
|
Remove redundant context manager.
Florent Xicluna
2010-09-03
1
-15/+1
*
|
OSError is the exception raised when one tries to create a directory that
Brett Cannon
2010-08-26
1
-2/+5
*
|
Fix a bug where an attribute was lacking an object to work off of.
Brett Cannon
2010-08-24
1
-1/+1
*
|
One of the joys of having test_multiprocessing occasionally execute after
Brett Cannon
2010-08-22
1
-18/+26
*
|
Make importlib.abc.SourceLoader the primary mechanism for importlib.
Brett Cannon
2010-07-03
1
-2/+2
*
|
Make importlib.abc.SourceLoader the primary mechanism for importlib.
Brett Cannon
2010-07-03
1
-407/+182
*
|
Move importlib.abc.SourceLoader to _bootstrap.
Brett Cannon
2010-06-28
1
-0/+137
*
|
Repair test failure. Bug 8727.
Barry Warsaw
2010-05-18
1
-2/+10
*
|
PEP 3147
Barry Warsaw
2010-04-17
1
-1/+20
*
|
Importlib was not matching import's handling of .pyc files where it had less
Brett Cannon
2010-02-19
1
-5/+10
*
|
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
[next]