summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/_bootstrap.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #13593: updating the importlib utility decorators for __qualname__.Meador Inge2011-12-151-1/+1
* Issue #13591: import_module potentially imports a module twice.Meador Inge2011-12-151-1/+3
|\
| * Issue #13591: import_module potentially imports a module twice.Meador Inge2011-12-151-1/+3
* | Issue #13392: Writing a pyc file should now be atomic under Windows as well.Antoine Pitrou2011-11-151-15/+20
* | Issue #13303: Fix bytecode file default permission.Charles-François Natali2011-11-101-1/+1
* | Issue #13303: Fix a race condition in the bytecode file creation.Charles-François Natali2011-10-311-3/+4
* | Simplify and remove few dependencies on 'errno', thanks to PEP 3151.Florent Xicluna2011-10-281-11/+5
* | Silence the FileExistsError which can be raised because of the O_EXCL flagAntoine Pitrou2011-10-191-7/+7
* | Issue #13146: Writing a pyc file is now atomic under POSIX.Antoine Pitrou2011-10-171-3/+23
* | Make importlib compatible with __import__ by "fixing" code.co_filenameBrett Cannon2011-03-231-0/+1
* | Have importlib use the repr of a module name in error messages.Brett Cannon2011-03-231-1/+1
* | #11515: Merge with 3.2.Ezio Melotti2011-03-151-2/+2
|\ \ | |/
| * #11515: Merge with 3.1.Ezio Melotti2011-03-151-2/+2
| |\
| | * #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-1/+1
| | * Merged revisions 78242 via svnmerge fromBrett Cannon2010-02-191-5/+10
| | * Merged revisions 76146 via svnmerge fromBrett Cannon2009-11-071-2/+2
| | * Merged revisions 74584 via svnmerge fromBrett Cannon2009-08-301-1/+6
* | | Skip test if zlib not present. Closes #11498. Patch by Natalia B. Bidart.Eric V. Smith2011-03-141-1/+1
* | | Typos.Eric V. Smith2011-03-141-2/+2
|/ /
* | Issue 10899: Remove function type annotations from the stdlibRaymond Hettinger2011-01-131-3/+3
* | Issue 10899: Remove function type annotations from the stdlibRaymond Hettinger2011-01-131-2/+2
* | Fix a minor inconsistency in capitalization for the 'No module named' exceptionBrett Cannon2010-11-181-3/+5
* | Remove redundant context manager.Florent Xicluna2010-09-031-15/+1
* | OSError is the exception raised when one tries to create a directory thatBrett Cannon2010-08-261-2/+5
* | Fix a bug where an attribute was lacking an object to work off of.Brett Cannon2010-08-241-1/+1
* | One of the joys of having test_multiprocessing occasionally execute afterBrett Cannon2010-08-221-18/+26
* | Make importlib.abc.SourceLoader the primary mechanism for importlib.Brett Cannon2010-07-031-2/+2
* | Make importlib.abc.SourceLoader the primary mechanism for importlib.Brett Cannon2010-07-031-407/+182
* | Move importlib.abc.SourceLoader to _bootstrap.Brett Cannon2010-06-281-0/+137
* | Repair test failure. Bug 8727.Barry Warsaw2010-05-181-2/+10
* | PEP 3147Barry Warsaw2010-04-171-1/+20
* | Importlib was not matching import's handling of .pyc files where it had lessBrett Cannon2010-02-191-5/+10
* | no need to translate newlines in python code anymoreBenjamin Peterson2009-11-131-15/+0
* | When trying to write new bytecode, importlib was not catching the IOErrorBrett Cannon2009-11-071-2/+2
* | Trying to import a submodule from another module and not a package was raisingBrett Cannon2009-08-301-1/+5
* | When the globals argument to importlib.__import__() contained any value forBrett Cannon2009-08-301-4/+4
* | Raise TypeError if the name given to importlib.__import__() lacks an rpartitionBrett Cannon2009-08-301-0/+2
* | Allow importlib.__import__ to accept any iterable for fromlist. Discovered whenBrett Cannon2009-08-301-0/+1
* | Have importlib raise ImportError if None is found in sys.modules. This matchesBrett Cannon2009-08-301-1/+6
* | Implement the PEP 302 protocol for get_filename() asBrett Cannon2009-07-201-17/+21
|/
* Rip out a useless method that the superclass implements properly.Brett Cannon2009-04-011-19/+0
* Fix importlib.machinery.PathFinder.find_module() to essentially skip over NoneBrett Cannon2009-03-301-3/+4
* Implement InspectLoader for FrozenImporter.Brett Cannon2009-03-151-2/+29
* Implement InspectLoader for BuiltinImporter.Brett Cannon2009-03-151-2/+29
* A few more docstring/API cleanups for importlib.Brett Cannon2009-03-151-12/+16
* Clean up docstring from importlib.util.module_for_loader.Brett Cannon2009-03-151-8/+8
* Finish properly hiding importlib implementation code.Brett Cannon2009-03-121-14/+9
* Last big re-organization of importlib._bootstrap. Should actually be able to ...Brett Cannon2009-03-121-172/+173
* Do a little bit of reorganization on importlib._bootstrap.Brett Cannon2009-03-121-58/+69
* Make utility code in importlib._bootstrap private.Brett Cannon2009-03-121-32/+32