Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merged revisions 77479 via svnmerge from | Brett Cannon | 2010-01-13 | 1 | -1/+1 |
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r77479 | brett.cannon | 2010-01-13 11:21:00 -0800 (Wed, 13 Jan 2010) | 1 line Fix the wrong numbering of a PEP. ........ | ||||
* | Fix some minor typos in the importlib docs. | Brett Cannon | 2009-07-20 | 1 | -2/+2 |
| | |||||
* | typo | Tarek Ziadé | 2009-05-14 | 1 | -1/+1 |
| | |||||
* | Explain a little about the explanation. | Brett Cannon | 2009-04-01 | 1 | -0/+5 |
| | |||||
* | Add a meta path importer example. | Brett Cannon | 2009-04-01 | 1 | -7/+98 |
| | |||||
* | Add some clarification to the importlib docs. | Brett Cannon | 2009-04-01 | 1 | -4/+8 |
| | |||||
* | Thorough review of importlib docs. Reviewed by Brett himself. | Guido van Rossum | 2009-03-30 | 1 | -34/+50 |
| | |||||
* | Fix a doc typo. | Brett Cannon | 2009-03-16 | 1 | -1/+1 |
| | |||||
* | Implement InspectLoader for FrozenImporter. | Brett Cannon | 2009-03-15 | 1 | -1/+2 |
| | |||||
* | Implement InspectLoader for BuiltinImporter. | Brett Cannon | 2009-03-15 | 1 | -10/+11 |
| | |||||
* | #5486: typos. | Georg Brandl | 2009-03-13 | 1 | -3/+3 |
| | |||||
* | Implement importlib.util.set_loader: a decorator to automatically set | Brett Cannon | 2009-03-10 | 1 | -1/+9 |
| | | | | __loader__ on modules. | ||||
* | Implement get_source for importlib.abc.PyLoader using source_path and get_data. | Brett Cannon | 2009-03-10 | 1 | -0/+7 |
| | |||||
* | Fix some reST mishaps. | Brett Cannon | 2009-03-09 | 1 | -12/+12 |
| | |||||
* | Clarify an assumption that importlib.abc.PyLoader makes when importing a | Brett Cannon | 2009-03-09 | 1 | -1/+4 |
| | | | | package and setting __path__. | ||||
* | Introduce importlib.abc. The module contains various ABCs related to imports | Brett Cannon | 2009-03-09 | 1 | -31/+184 |
| | | | | | | | (mostly stuff specified by PEP 302). There are two ABCs, PyLoader and PyPycLoader, which help with implementing source and source/bytecode loaders by implementing load_module in terms of other methods. This removes a lot of gritty details loaders typically have to worry about. | ||||
* | Rename importlib.util.set___package__ to set_package. | Brett Cannon | 2009-03-04 | 1 | -1/+1 |
| | |||||
* | Expose importlib.util.set___package__. | Brett Cannon | 2009-03-02 | 1 | -13/+21 |
| | |||||
* | Implement the more specific PEP 302 semantics for loaders and what happens upon | Brett Cannon | 2009-02-17 | 1 | -0/+33 |
| | | | | | | load failure in relation to reloads. Also expose importlib.util.module_for_loader to handle all of the details of this along with making sure all current loaders behave nicely. | ||||
* | Document importlib.machinery.PathFinder. | Brett Cannon | 2009-02-16 | 1 | -3/+28 |
| | |||||
* | Rewrite the code implementing __import__ for importlib. Now it is much simpler | Brett Cannon | 2009-02-07 | 1 | -3/+7 |
| | | | | | | | | | and relies much more on meta path finders to abstract out various parts of import. As part of this the semantics for import_module tightened up and now follow __import__ much more closely (biggest thing is that the 'package' argument must now already be imported, else a SystemError is raised). | ||||
* | use the classmethod directive | Benjamin Peterson | 2009-01-25 | 1 | -4/+4 |
| | |||||
* | Document both importlib.machinery.BuiltinImporter and FrozenImporter. | Brett Cannon | 2009-01-25 | 1 | -1/+47 |
| | |||||
* | Fix markup for arguments in importlib docs. | Brett Cannon | 2009-01-22 | 1 | -2/+2 |
| | |||||
* | Document the (very small) public API for importlib. As time goes on and some | Brett Cannon | 2009-01-20 | 1 | -0/+78 |
key refactorings occur more of the API will be exposed and documented. |