| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | | Trying to import a submodule from another module and not a package was raising | Brett Cannon | 2009-08-30 | 1 | -1/+5 |
|
|
* | | When the globals argument to importlib.__import__() contained any value for | Brett Cannon | 2009-08-30 | 1 | -4/+4 |
|
|
* | | Raise TypeError if the name given to importlib.__import__() lacks an rpartition | Brett Cannon | 2009-08-30 | 1 | -0/+2 |
|
|
* | | Allow importlib.__import__ to accept any iterable for fromlist. Discovered when | Brett Cannon | 2009-08-30 | 1 | -0/+1 |
|
|
* | | Have importlib raise ImportError if None is found in sys.modules. This matches | Brett Cannon | 2009-08-30 | 1 | -1/+6 |
|
|
* | | Implement the PEP 302 protocol for get_filename() as | Brett Cannon | 2009-07-20 | 1 | -17/+21 |
|/ |
|
* | 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 | 1 | -3/+4 |
|
|
* | Implement InspectLoader for FrozenImporter. | Brett Cannon | 2009-03-15 | 1 | -2/+29 |
|
|
* | Implement InspectLoader for BuiltinImporter. | Brett Cannon | 2009-03-15 | 1 | -2/+29 |
|
|
* | A few more docstring/API cleanups for importlib. | Brett Cannon | 2009-03-15 | 1 | -12/+16 |
|
|
* | 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 | 1 | -14/+9 |
|
|
* | 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 |
|
|
* | Implement importlib.util.set_loader: a decorator to automatically set | Brett Cannon | 2009-03-10 | 1 | -3/+15 |
|
|
* | Implement get_source for importlib.abc.PyLoader using source_path and get_data. | Brett Cannon | 2009-03-10 | 1 | -0/+20 |
|
|
* | Introduce importlib.abc. The module contains various ABCs related to imports | Brett Cannon | 2009-03-09 | 1 | -8/+2 |
|
|
* | Fix importlib._bootstrap.PyPycLoader.load_module() to better handle | Brett Cannon | 2009-03-09 | 1 | -3/+10 |
|
|
* | Minor changes to Python source base loader. | Brett Cannon | 2009-03-08 | 1 | -3/+7 |
|
|
* | Rename importlib.util.set___package__ to set_package. | Brett Cannon | 2009-03-04 | 1 | -4/+4 |
|
|
* | Move importlib over to _io. | Brett Cannon | 2009-03-04 | 1 | -5/+5 |
|
|
* | merge the io-c branch: C implementation of the io module | Benjamin Peterson | 2009-03-04 | 1 | -2/+2 |
|
|
* | Relocate source_mtime in importlib to PyPycLoader. | Brett Cannon | 2009-02-21 | 1 | -13/+11 |
|
|