summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/_bootstrap.py
Commit message (Expand)AuthorAgeFilesLines
...
* Issue #14605: Rename _SourcelessFileLoader to SourcelessFileLoader.Marc-Andre Lemburg2012-04-251-2/+2
* Issue #14605: Revert renaming of _SourcelessFileLoader, since it causedMarc-Andre Lemburg2012-04-251-2/+2
* Issue #14605: Rename _SourcelessFileLoader to SourcelessFileLoaderMarc-Andre Lemburg2012-04-241-2/+2
* Issue #14605: Expose importlib.abc.FileLoader andBrett Cannon2012-04-221-54/+47
* Issue #13959: Continue to try to accomodate altsep in importlib by notBrett Cannon2012-04-221-5/+11
* Revert to os.path.join() semantics for path manipulation in importlibBrett Cannon2012-04-221-11/+2
* Continue the good fight to get Windows to like importlib by fixing aBrett Cannon2012-04-221-1/+3
* Have importlib look for pre-existing path separators when joiningBrett Cannon2012-04-221-2/+10
* Don't worry about moving imp.get_tag() over to Lib/imp.py.Brett Cannon2012-04-211-1/+3
* Issue #13959: Re-implement imp.source_from_cache() in Lib/imp.py.Brett Cannon2012-04-211-1/+5
* Issue #13959: Re-implement imp.cache_from_source() in Lib/imp.py.Brett Cannon2012-04-211-5/+27
* Make path manipulation more robust for platforms with alternative pathBrett Cannon2012-04-211-16/+27
* Issue #13959: Keep imp.get_magic() in C code, but cache in importlibBrett Cannon2012-04-201-4/+8
* Issue #14581: Windows users are allowed to import modules w/o takingBrett Cannon2012-04-201-1/+17
* don't bother keeping a set we'll never useBenjamin Peterson2012-04-181-1/+2
* rollback 005fd1fe31ab (see #14609 and #14582)Benjamin Peterson2012-04-181-10/+6
* Issue #12599: Be more strict in accepting None vs. a false-like objectBrett Cannon2012-04-181-3/+3
* Issue #13959: Rename imp to _imp and add Lib/imp.py and beginBrett Cannon2012-04-151-30/+40
* mergeBrett Cannon2012-04-151-2/+2
|\
| * utilize startswith(tuple)Philip Jenvey2012-04-151-2/+2
* | Issue #14582: Import returns the module returned by a loader insteadBrett Cannon2012-04-151-6/+10
|/
* Handle importing pkg.mod by executingBrett Cannon2012-04-151-1/+1
* Add some comments.Brett Cannon2012-04-141-0/+2
* Issue #2377: Make importlib the implementation of __import__().Brett Cannon2012-04-141-6/+29
* Have importlib take advantage of ImportError's new 'name' and 'path'Brett Cannon2012-04-131-16/+26
* If a module injects something into sys.modules as a side-effect ofBrett Cannon2012-04-031-0/+3
* Remove a dead docstring.Brett Cannon2012-03-021-6/+0
* Update importlib.invalidate_caches() to be more general.Brett Cannon2012-02-271-14/+5
* unused imports, pep8Philip Jenvey2012-02-251-6/+8
* Simplify importib._resolve_name().Brett Cannon2012-02-241-11/+5
* Turn _return_module() into _handle_fromlist().Brett Cannon2012-02-241-25/+25
* Improper type for __package__ should raise TypeError, not ValueError.Brett Cannon2012-02-231-1/+1
* Do a type check instead of an interface check.Brett Cannon2012-02-231-2/+2
* Refactor importlib to make it easier to re-implement in C.Brett Cannon2012-02-221-45/+31
* Issue #14077: importlib: Fix regression introduced by de6703671386.Charles-François Natali2012-02-221-3/+6
* Issue #14063: fix test_importlib failure under OS X case-insensitive filesystemsAntoine Pitrou2012-02-201-11/+15
* put docstrings on functionsBenjamin Peterson2012-02-201-2/+2
* _relax_case -> _make_relax_caseAntoine Pitrou2012-02-201-3/+4
* Issue #14043: Speed up importlib's _FileFinder by at least 8x, and add a new ...Antoine Pitrou2012-02-201-46/+65
* Fix a failing importlib test under Windows.Brett Cannon2012-02-201-1/+2
* Optimize importlib's case-sensitivity check by wasting as little time as poss...Brett Cannon2012-02-171-13/+23
* Have importlib use os.replace() for atomic renaming.Brett Cannon2012-02-171-17/+6
* Tweak the handling of the empty string in sys.path for importlib.Brett Cannon2012-02-161-1/+3
* importlib.__import__() now raises ValueError when level < 0.Brett Cannon2012-02-161-0/+2
* Refactor importlib.__import__() and _gcd_import() to facilitate usingBrett Cannon2012-02-161-71/+130
* Bring importlib in line w/ changes made in my personal bootstrap branch in th...Brett Cannon2012-02-141-1/+15
* simplifyPhilip Jenvey2012-02-101-4/+1
* Undo a bad mq management thingy.Brett Cannon2012-02-091-44/+0
* Whitespace normalization.Brett Cannon2012-02-081-1/+0
* Use the cwd when the empty string is found in sys.path. This leads toBrett Cannon2012-02-081-1/+45