summaryrefslogtreecommitdiffstats
path: root/Lib/importlib
Commit message (Expand)AuthorAgeFilesLines
* 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-282-13/+6
* 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
* Closes #12291 for 3.3 - merged fix from 3.2.Vinay Sajip2011-07-021-1/+1
|\
| * Closes #12291: Fixed bug which was found when doing multiple loads from one ...Vinay Sajip2011-07-021-1/+1
* | Kill dead code in importlib.test.__main__ (#12019, reviewed by Brett Cannon)Éric Araujo2011-06-071-6/+1
* | (Merge 3.2) Issue #11614: Fix importlib tests for the new __hello__ moduleVictor Stinner2011-05-161-9/+17
|\ \ | |/
| * (Merge 3.1) Issue #11614: Fix importlib tests for the new __hello__ moduleVictor Stinner2011-05-161-9/+17
| |\
| | * Issue #11614: Fix importlib tests for the new __hello__ moduleVictor Stinner2011-05-161-9/+17
* | | Remove a stale comment.Brett Cannon2011-03-241-7/+0
* | | 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 86596 via svnmerge fromEzio Melotti2010-11-214-23/+23
| | * Merged revisions 78242 via svnmerge fromBrett Cannon2010-02-192-29/+109
| | * Merged revisions 76146 via svnmerge fromBrett Cannon2009-11-072-2/+28
| | * Merged revisions 76113-76114 via svnmerge fromBrett Cannon2009-11-051-13/+10
| | * Merged revisions 74584 via svnmerge fromBrett Cannon2009-08-302-5/+20
| | * Merged revisions 73715 via svnmerge fromGeorg Brandl2009-08-1318-84/+84
| | * Merged revisions 74107 via svnmerge fromBrett Cannon2009-07-202-15/+62
| | * Backport of r74103.Brett Cannon2009-07-201-8/+8
* | | 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-132-18/+24
* | Issue 10899: Remove function type annotations from the stdlibRaymond Hettinger2011-01-132-15/+15
* | #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-204-23/+23
* | 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 sure that no __pycache__ directory is needlessly left behind when testingBrett Cannon2010-08-221-7/+10
* | While not strictly necessary thanks to the odd ABC inheritance done throughBrett Cannon2010-08-221-0/+14
* | Add importlib benchmarks which try to be "realistic" by importing the decimalBrett Cannon2010-07-221-7/+50
* | Add comma grouping to max result so it's easier to read.Brett Cannon2010-07-161-1/+1
* | Add benchmarks for importing just source w/o writing bytecode, importing sourceBrett Cannon2010-07-161-14/+57
* | Touch up comments and code along with outputting what the unit of measure is.Brett Cannon2010-07-151-7/+10
* | Make importlib.abc.SourceLoader the primary mechanism for importlib.Brett Cannon2010-07-032-27/+38
* | Make importlib.abc.SourceLoader the primary mechanism for importlib.Brett Cannon2010-07-033-1/+32
* | Fix a spelling mistake in a comment.Brett Cannon2010-07-031-1/+1
* | Make importlib.abc.SourceLoader the primary mechanism for importlib.Brett Cannon2010-07-0315-540/+406
* | Add an inheritance test for importlib.abc.SourceLoader.Brett Cannon2010-06-281-0/+5
* | Move importlib.abc.SourceLoader to _bootstrap.Brett Cannon2010-06-283-105/+141
* | fix test with more obviously incorrect bytecodeBenjamin Peterson2010-06-281-1/+1
* | Implement importlib.abc.SourceLoader and deprecate PyLoader and PyPycLoader.Brett Cannon2010-06-272-16/+654