| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #20383: Introduce importlib.util.module_from_spec(). | Brett Cannon | 2014-05-30 | 1 | -1/+1 |
|
|
* | Issue #14710: Fix both pkgutil.find_loader() and get_loader() to not | Brett Cannon | 2014-05-23 | 1 | -1/+3 |
|
|
* | Issue #21200: Return None from pkgutil.get_loader() when __spec__ is missing. | Eric Snow | 2014-04-19 | 1 | -0/+2 |
|
|
* | Close #20839: pkgutil.find_loader now uses importlib.util.find_spec | Nick Coghlan | 2014-03-04 | 1 | -12/+5 |
|
|
* | Issue 19944: Fix importlib.find_spec() so it imports parents as needed. | Eric Snow | 2014-01-25 | 1 | -1/+1 |
|
|
* | Remove more usage of APIs deprecated by PEP 451. | Eric Snow | 2014-01-07 | 1 | -6/+7 |
|
|
* | Issue #19708: Update pkgutil to use the new importer APIs. | Eric Snow | 2014-01-04 | 1 | -2/+18 |
|
|
* | Implement PEP 451 (ModuleSpec). | Eric Snow | 2013-11-22 | 1 | -2/+9 |
|
|
* | Close #19409: add missing import in pkgutil | Nick Coghlan | 2013-10-26 | 1 | -0/+1 |
|
|
* | Issue #17177: The imp module is pending deprecation. | Brett Cannon | 2013-06-16 | 1 | -6/+16 |
|
|
* | Add reference implementation for PEP 443 | Łukasz Langa | 2013-06-05 | 1 | -46/+6 |
|
|
* | Merge fix for #16163 from 3.3 | Nick Coghlan | 2013-04-14 | 1 | -2/+2 |
|\ |
|
| * | Close issue #16163: handle submodules in pkgutil.iter_importers | Nick Coghlan | 2013-04-14 | 1 | -2/+2 |
|
|
* | | modernize some modules' code by using with statement around open() | Giampaolo Rodola' | 2013-02-12 | 1 | -9/+8 |
|
|
* | | Replace IOError with OSError (#16715) | Andrew Svetlov | 2012-12-25 | 1 | -1/+1 |
|
|
* | | replace threw with raised (#16714) | Andrew Svetlov | 2012-12-19 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | replace threw with raised (#16714) | Andrew Svetlov | 2012-12-19 | 1 | -1/+1 |
| |\ |
|
* | \ | Issue #16714: use 'raise' exceptions, don't 'throw'. | Andrew Svetlov | 2012-12-18 | 1 | -1/+1 |
|\ \ \
| |/ / |
|
| * | | Issue #16714: use 'raise' exceptions, don't 'throw'. | Andrew Svetlov | 2012-12-18 | 1 | -1/+1 |
| |\ \
| | |/ |
|
* | | | Issue #16120: Use |yield from| in stdlib. | Andrew Svetlov | 2012-10-07 | 1 | -2/+1 |
|
|
* | | | utilize yield from | Philip Jenvey | 2012-10-01 | 1 | -2/+1 |
|/ / |
|
* | | Close #15386: There was a loophole that meant importlib.machinery and imp wou... | Nick Coghlan | 2012-07-20 | 1 | -1/+1 |
|
|
* | | Issue #15343: Handle importlib.machinery.FileFinder instances in pkgutil.walk... | Nick Coghlan | 2012-07-15 | 1 | -0/+43 |
|
|
* | | Take the first step in resolving the messy pkgutil vs importlib edge cases by... | Nick Coghlan | 2012-07-15 | 1 | -51/+43 |
|
|
* | | Issue #15294: Fix a regression in pkgutil.extend_path()'s handling of nested ... | Antoine Pitrou | 2012-07-09 | 1 | -3/+13 |
|
|
* | | issue 14660: Implement PEP 420, namespace packages. | Eric V. Smith | 2012-05-25 | 1 | -8/+18 |
|
|
* | | Issue #14605: Don't error out if get_importer() returns None. | Brett Cannon | 2012-04-27 | 1 | -0/+2 |
|
|
* | | Issue #14605: Make explicit the entries on sys.path_hooks that used to | Brett Cannon | 2012-04-26 | 1 | -8/+5 |
|
|
* | | Issue #13645: pyc files now contain the size of the corresponding source | Antoine Pitrou | 2012-01-13 | 1 | -1/+1 |
|
|
* | | merge from 3.2 | Ned Deily | 2011-10-06 | 1 | -3/+11 |
|\ \
| |/ |
|
| * | Issue #7367: Fix pkgutil.walk_paths to skip directories whose | Ned Deily | 2011-10-06 | 1 | -3/+11 |
|
|
* | | Use a local name (it was intended to be used but overlooked). | Éric Araujo | 2011-09-17 | 1 | -2/+2 |
|
|
* | | Merge 3.2 | Éric Araujo | 2011-05-25 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | Merge 3.1 | Éric Araujo | 2011-05-25 | 1 | -1/+1 |
| |\ |
|
| | * | Add missing name in pkgutil.__all__ | Éric Araujo | 2011-05-02 | 1 | -1/+1 |
|
|
| | * | Merged revisions 73833,73838,73850-73852,73856-73857 via svnmerge from | Georg Brandl | 2009-08-13 | 1 | -2/+1 |
|
|
* | | | Replace open(filename, 'rU') by open(filename, 'r') | Victor Stinner | 2011-05-04 | 1 | -2/+2 |
|/ / |
|
* | | Have pkgutil properly close files. | Brett Cannon | 2010-10-29 | 1 | -1/+2 |
|
|
* | | Issue 4005: Remove .sort() call on dict_keys object. | Alexandre Vassalotti | 2009-07-05 | 1 | -2/+1 |
|/ |
|
* | no 2.3 compat in the py3k lib #3676 | Benjamin Peterson | 2009-02-16 | 1 | -3/+0 |
|
|
* | Merged revisions 62350-62355,62358-62359,62364-62365,62370,62372-62375,62378-... | Christian Heimes | 2008-04-19 | 1 | -0/+37 |
|
|
* | Patch# 1258 by Christian Heimes: kill basestring. | Guido van Rossum | 2007-10-16 | 1 | -1/+1 |
|
|
* | Remove RISCOS support | Skip Montanaro | 2007-08-16 | 1 | -4/+2 |
|
|
* | SF patch 1631942 by Collin Winter: | Guido van Rossum | 2007-01-10 | 1 | -1/+1 |
|
|
* | Merged revisions 46753-51188 via svnmerge from | Thomas Wouters | 2006-08-11 | 1 | -7/+46 |
|
|
* | Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. | Thomas Wouters | 2006-05-27 | 1 | -13/+17 |
|
|
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 1 | -0/+425 |
|
|
* | SF patch #806246: use basestring where possible | Raymond Hettinger | 2003-09-17 | 1 | -1/+1 |
|
|
* | Last week we discussed adding this module to the standard library. | Guido van Rossum | 2002-12-23 | 1 | -0/+78 |
|
|