summaryrefslogtreecommitdiff
path: root/Lib/pkgutil.py
Commit message (Expand)AuthorAgeFilesLines
* closes bpo-31650: PEP 552 (Deterministic pycs) implementation (#4575)Benjamin Peterson2017-12-091-1/+1
* bpo-24744: Raises error in pkgutil.walk_packages if path is str (#1926)Sanyam Khurana2017-06-131-0/+3
* Issue #17211: Yield a namedtuple in pkgutil.Eric Snow2016-09-071-12/+17
* [merge from 3.5] - Update pkgutil docs to reference appropriate finder and lo...Senthil Kumaran2016-09-051-4/+4
|\
| * Update pkgutil docs to reference appropriate finder and loader object documen...Senthil Kumaran2016-09-051-4/+4
* | Issue #26896: Disambiguate uses of "importer" with "finder".Brett Cannon2016-07-081-11/+11
* | Merge 3.5, issue #14209Łukasz Langa2016-06-111-1/+1
|\ \ | |/
| * Issue #14209: pkgutil.iter_zipimport_modules ignores the prefix for packagesŁukasz Langa2016-06-111-1/+1
* | Upgrade the imp module's deprecation to DeprecationWarning.Brett Cannon2015-10-161-1/+1
|/
* Issue #20383: Introduce importlib.util.module_from_spec().Brett Cannon2014-05-301-1/+1
* Issue #14710: Fix both pkgutil.find_loader() and get_loader() to notBrett Cannon2014-05-231-1/+3
* Issue #21200: Return None from pkgutil.get_loader() when __spec__ is missing.Eric Snow2014-04-191-0/+2
* Close #20839: pkgutil.find_loader now uses importlib.util.find_specNick Coghlan2014-03-041-12/+5
* Issue 19944: Fix importlib.find_spec() so it imports parents as needed.Eric Snow2014-01-251-1/+1
* Remove more usage of APIs deprecated by PEP 451.Eric Snow2014-01-061-6/+7
* Issue #19708: Update pkgutil to use the new importer APIs.Eric Snow2014-01-041-2/+18
* Implement PEP 451 (ModuleSpec).Eric Snow2013-11-221-2/+9
* Close #19409: add missing import in pkgutilNick Coghlan2013-10-271-0/+1
* Issue #17177: The imp module is pending deprecation.Brett Cannon2013-06-161-6/+16
* Add reference implementation for PEP 443Łukasz Langa2013-06-051-46/+6
* Merge fix for #16163 from 3.3Nick Coghlan2013-04-141-2/+2
|\
| * Close issue #16163: handle submodules in pkgutil.iter_importersNick Coghlan2013-04-141-2/+2
* | modernize some modules' code by using with statement around open()Giampaolo Rodola'2013-02-121-9/+8
* | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-1/+1
* | replace threw with raised (#16714)Andrew Svetlov2012-12-191-1/+1
|\ \ | |/
| * replace threw with raised (#16714)Andrew Svetlov2012-12-191-1/+1
| |\
* | \ Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-181-1/+1
|\ \ \ | |/ /
| * | Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-181-1/+1
| |\ \ | | |/
* | | Issue #16120: Use |yield from| in stdlib.Andrew Svetlov2012-10-071-2/+1
* | | utilize yield fromPhilip Jenvey2012-10-011-2/+1
|/ /
* | Close #15386: There was a loophole that meant importlib.machinery and imp wou...Nick Coghlan2012-07-201-1/+1
* | Issue #15343: Handle importlib.machinery.FileFinder instances in pkgutil.walk...Nick Coghlan2012-07-151-0/+43
* | Take the first step in resolving the messy pkgutil vs importlib edge cases by...Nick Coghlan2012-07-151-51/+43
* | Issue #15294: Fix a regression in pkgutil.extend_path()'s handling of nested ...Antoine Pitrou2012-07-091-3/+13
* | issue 14660: Implement PEP 420, namespace packages.Eric V. Smith2012-05-241-8/+18
* | Issue #14605: Don't error out if get_importer() returns None.Brett Cannon2012-04-271-0/+2
* | Issue #14605: Make explicit the entries on sys.path_hooks that used toBrett Cannon2012-04-251-8/+5
* | Issue #13645: pyc files now contain the size of the corresponding sourceAntoine Pitrou2012-01-131-1/+1
* | merge from 3.2Ned Deily2011-10-061-3/+11
|\ \ | |/
| * Issue #7367: Fix pkgutil.walk_paths to skip directories whoseNed Deily2011-10-061-3/+11
* | Use a local name (it was intended to be used but overlooked).Éric Araujo2011-09-171-2/+2
* | Merge 3.2Éric Araujo2011-05-251-1/+1
|\ \ | |/
| * Merge 3.1Éric Araujo2011-05-251-1/+1
| |\
| | * Add missing name in pkgutil.__all__Éric Araujo2011-05-021-1/+1
| | * Merged revisions 73833,73838,73850-73852,73856-73857 via svnmerge fromGeorg Brandl2009-08-131-2/+1
* | | Replace open(filename, 'rU') by open(filename, 'r')Victor Stinner2011-05-041-2/+2
|/ /
* | Have pkgutil properly close files.Brett Cannon2010-10-291-1/+2
* | Issue 4005: Remove .sort() call on dict_keys object.Alexandre Vassalotti2009-07-051-2/+1
|/
* no 2.3 compat in the py3k lib #3676Benjamin Peterson2009-02-161-3/+0
* Merged revisions 62350-62355,62358-62359,62364-62365,62370,62372-62375,62378-...Christian Heimes2008-04-191-0/+37