Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #14646: __import__() now sets __loader__ if need be. | Brett Cannon | 2012-04-27 | 1 | -0/+28 |
| | | | | | | importlib.util.module_for_loader also will set __loader__ along with __package__. This is in conjunction to a forthcoming update to PEP 302 which will make these two attributes required for loaders to set. | ||||
* | Issue #12599: Be more strict in accepting None vs. a false-like object | Brett Cannon | 2012-04-18 | 1 | -1/+15 |
| | | | | | | | in importlib. Thanks to PJE for pointing out the issue and Nick Coghlan for filing the bug. | ||||
* | Issue #13593: updating the importlib utility decorators for __qualname__. | Meador Inge | 2011-12-15 | 1 | -0/+10 |
| | |||||
* | Move over to assertIs. | Brett Cannon | 2010-06-21 | 1 | -2/+2 |
| | |||||
* | convert old fail* assertions to assert* | Benjamin Peterson | 2009-06-30 | 1 | -6/+6 |
| | |||||
* | Rename importlib.util.set___package__ to set_package. | Brett Cannon | 2009-03-04 | 1 | -3/+3 |
| | |||||
* | Expose importlib.util.set___package__. | Brett Cannon | 2009-03-02 | 1 | -1/+50 |
| | |||||
* | Implement the more specific PEP 302 semantics for loaders and what happens upon | Brett Cannon | 2009-02-17 | 1 | -0/+69 |
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. |