1. 56dfc21 Undo a recommendation as load_module() methods might be called directly by Brett Cannon · 12 years ago
  2. 3dc48d6 Issue #18070: importlib.util.module_for_loader() now sets __loader__ by Brett Cannon · 12 years ago
  3. a22faca Clarify some documentation by Brett Cannon · 12 years ago
  4. a3687f0 Introduce importlib.util.ModuleManager which is a context manager to by Brett Cannon · 12 years ago
  5. 3b62ca8 Issue #18072: Implement get_code() for importlib.abc.InspectLoader and by Brett Cannon · 12 years ago
  6. 9ffe85e Move importlib.abc.SourceLoader.source_to_code() to InspectLoader. by Brett Cannon · 12 years ago
  7. b39567a merge by Brett Cannon · 12 years ago
  8. 2cefb3c Various tweaks to importlib docs. by Brett Cannon · 12 years ago
  9. 4c14b5d #17115,17116: Have modules initialize the __package__ and __loader__ by Brett Cannon · 12 years ago
  10. 1f6ee73 merge for issue #17357 by Brett Cannon · 12 years ago
  11. 4067aa2 Issue #17357: Use more stern wording for importlib.invalidate_caches(). by Brett Cannon · 12 years ago
  12. 526575d Fix invalid markup. by Georg Brandl · 12 years ago
  13. 100883f Issue #17093,17566,17567: Methods from classes in importlib.abc now raise/return by Brett Cannon · 12 years ago
  14. 3279923 Issue #17099: Have importlib.find_loader() raise ValueError when by Brett Cannon · 12 years ago
  15. 4802bec Issue #17117: Have both import itself and importlib.util.set_loader() by Brett Cannon · 12 years ago
  16. 597ba7e Issue #17215: Fix documentation misprints (patch by July Tikhonov) by Andrew Svetlov · 12 years ago
  17. a60de4f Issue #17215: Fix documentation misprints (patch by July Tikhonov) by Andrew Svetlov · 12 years ago
  18. a6cfb28 Issue #15627: This is simply an update to the name of a new method recently added by Eric Snow · 13 years ago
  19. 5650e4f Issue #15627: Add the compile_source() method to importlib.abc.SourceLoader. by Brett Cannon · 13 years ago
  20. 10f1981 Merge fix for #16489 from 3.3 by Brett Cannon · 13 years ago
  21. 56b4ca7 Issue #16489: Make it clearer that importlib.find_loader() requires by Brett Cannon · 13 years ago
  22. 90a654b Issue #15641: Clean up deprecated classes from importlib by Andrew Svetlov · 13 years ago
  23. 1f67e80 Fix typo. by Ezio Melotti · 13 years ago
  24. 1b79918 Issue #15640: Document importlib.abc.Finder as deprecated. by Brett Cannon · 13 years ago
  25. 27bbcfb Merge #15543: glossary entry for and 'universal newlines', and links to it. by R David Murray · 13 years ago
  26. ee0a945 #15543: reflow paragraphs. by R David Murray · 13 years ago
  27. 1b00f25 #15543: glossary entry for and 'universal newlines', and links to it. by R David Murray · 13 years ago
  28. a865654 Push importlib ABC hierarchy chart. by Andrew Svetlov · 13 years ago
  29. a6e8581 Minor doc formatting cleanup. by Brett Cannon · 13 years ago
  30. ac9f2f3 Issue #15576: Allow extension modules to be a package's __init__ by Brett Cannon · 13 years ago
  31. f4dc920 Issue #15502: Finish bringing importlib.abc in line with the current by Brett Cannon · 13 years ago
  32. cb4996a Issue #15471: Don't use mutable object as default values for the by Brett Cannon · 13 years ago
  33. 077ef45 Update the What's New details for importlib based on doc/ABC changes. by Brett Cannon · 13 years ago
  34. 773468f Ditch the 'self' argument in importlib docs since it's implied. by Brett Cannon · 13 years ago
  35. 4941774 Issue #15502: Bring the importlib.PathFinder docs and docstring more in line with the new import system documentation, and fix various parts of the new docs that weren't quite right given PEP 420 or were otherwise a bit misleading. Also note the key terminology problem still being discussed in the issue by Nick Coghlan · 13 years ago
  36. ff79486 Close #15519: Properly expose WindowsRegistryFinder in importlib and bring the name into line with normal import terminology. Original patch by Eric Snow by Nick Coghlan · 13 years ago
  37. 8a9080f Issue #15502: Bring the importlib ABCs into line with the current state of the import protocols given PEP 420. Original patch by Eric Snow. by Nick Coghlan · 13 years ago
  38. d7d2194 Integration of importdocs from the features/pep-420 repo. by Barry Warsaw · 13 years ago
  39. c5afd42 Fix importlib.machinery.all_suffixes docs by Nick Coghlan · 13 years ago
  40. 76e0770 Close #15387: inspect.getmodulename() now uses a new importlib.machinery.all_suffixes() API rather than the deprecated inspect.getmoduleinfo() by Nick Coghlan · 13 years ago
  41. 1e33156 Closes #15030: Make importlib.abc.PyPycLoader respect the new .pyc by Brett Cannon · 13 years ago
  42. 61063cc Fix a couple of versionadded/versionchanged related markup errors. by Georg Brandl · 13 years ago
  43. ea0b823 Issue #14938: importlib.abc.SourceLoader.is_package() now takes the by Brett Cannon · 13 years ago
  44. d200bf5 Add importlib.util.resolve_name(). by Brett Cannon · 13 years ago
  45. ee78a2b Issue #13959: Introduce importlib.find_loader(). by Brett Cannon · 13 years ago
  46. c049952 Issue #13959: Have by Brett Cannon · 13 years ago
  47. cb66eb0 Issue #13959: Deprecate imp.get_suffixes() for new attributes on by Brett Cannon · 13 years ago
  48. efad00d Issue #14646: __import__() now sets __loader__ if need be. by Brett Cannon · 13 years ago
  49. 4fe29c9 Issue #14605: Rename _SourcelessFileLoader to SourcelessFileLoader. by Marc-Andre Lemburg · 13 years ago
  50. ac8805a Issue #14605: Revert renaming of _SourcelessFileLoader, since it caused by Marc-Andre Lemburg · 13 years ago
  51. 2945e78 Issue #14605: Rename _SourcelessFileLoader to SourcelessFileLoader by Marc-Andre Lemburg · 13 years ago
  52. 938d44d Issue #14605: Expose importlib.abc.FileLoader and by Brett Cannon · 13 years ago
  53. 83ac013 Clarify importlib.machinery.PathFinder's difference from what __import__() does. by Brett Cannon · 13 years ago
  54. 75321e8 Minor doc cleanup. by Brett Cannon · 13 years ago
  55. b46a179 Update importlib.invalidate_caches() to be more general. by Brett Cannon · 13 years ago
  56. c541f8e Issue #14043: Speed up importlib's _FileFinder by at least 8x, and add a new importlib.invalidate_caches() function. by Antoine Pitrou · 13 years ago
  57. 5136ac0 Issue #13645: pyc files now contain the size of the corresponding source by Antoine Pitrou · 14 years ago
  58. 375aec2 Fix a few doc errors, mostly undefined keywords. by Georg Brandl · 15 years ago
  59. 6faee4e #9911: doc copyedits. by Georg Brandl · 15 years ago
  60. 8a1caa2 #6522: add a "decorator" directive to explicitly document decorators, and use it in a few places. by Georg Brandl · 15 years ago
  61. 6dfbff3 Minor clarification about importlib.abc.SourceLoader.get_filename. by Brett Cannon · 15 years ago
  62. 61b1425 Make importlib.abc.SourceLoader the primary mechanism for importlib. by Brett Cannon · 15 years ago
  63. 0e13c94 Make a sentence a little less awkward. by Brett Cannon · 15 years ago
  64. 0cf9e6a Move importlib.abc.SourceLoader to _bootstrap. by Brett Cannon · 15 years ago
  65. f23e374 Implement importlib.abc.SourceLoader and deprecate PyLoader and PyPycLoader. by Brett Cannon · 15 years ago
  66. 30b7a90 Add a link to PEP 3147 from the importlib docs. by Brett Cannon · 15 years ago
  67. 8917d5e Fix the wrong numbering of a PEP. by Brett Cannon · 16 years ago
  68. 3e761a9 Wording clarification. by Brett Cannon · 16 years ago
  69. fee82f4 Clarify the intention of raising ImportError for importlib.abc.PyLoader.(source|bytecode)_path. by Brett Cannon · 16 years ago
  70. 0089d75 update to reality by Benjamin Peterson · 16 years ago
  71. 1b184d5 Pluralize a word. by Brett Cannon · 16 years ago
  72. 6253871 Clean up a minor bit of wording. by Brett Cannon · 16 years ago
  73. 2346029 Make the wdocs for importlib.abc.ExecutionLoader to be weaker in terms of what is needed to execute a module. by Brett Cannon · 16 years ago
  74. 6919427 Implement the PEP 302 protocol for get_filename() as by Brett Cannon · 16 years ago
  75. 434caaa typo by Tarek Ziadé · 16 years ago
  76. bc6c2b5 Explain a little about the explanation. by Brett Cannon · 16 years ago
  77. 9f4cb1c Add a meta path importer example. by Brett Cannon · 16 years ago
  78. 16248a4 Add some clarification to the importlib docs. by Brett Cannon · 16 years ago
  79. 0961354 Thorough review of importlib docs. Reviewed by Brett himself. by Guido van Rossum · 16 years ago
  80. 44c5481 Fix a doc typo. by Brett Cannon · 16 years ago
  81. 8d11013 Implement InspectLoader for FrozenImporter. by Brett Cannon · 16 years ago
  82. a113ac5 Implement InspectLoader for BuiltinImporter. by Brett Cannon · 16 years ago
  83. ae2dbe2 #5486: typos. by Georg Brandl · 16 years ago
  84. 2cf03a8 Implement importlib.util.set_loader: a decorator to automatically set by Brett Cannon · 16 years ago
  85. d43b30b Implement get_source for importlib.abc.PyLoader using source_path and get_data. by Brett Cannon · 16 years ago
  86. 9c751b7 Fix some reST mishaps. by Brett Cannon · 16 years ago
  87. ad876c7 Clarify an assumption that importlib.abc.PyLoader makes when importing a by Brett Cannon · 16 years ago
  88. 2a922ed Introduce importlib.abc. The module contains various ABCs related to imports by Brett Cannon · 16 years ago
  89. 435aad8 Rename importlib.util.set___package__ to set_package. by Brett Cannon · 16 years ago
  90. 57b46f5 Expose importlib.util.set___package__. by Brett Cannon · 16 years ago
  91. d2e7b33 Implement the more specific PEP 302 semantics for loaders and what happens upon by Brett Cannon · 16 years ago
  92. debb98d Document importlib.machinery.PathFinder. by Brett Cannon · 16 years ago
  93. 2c318a1 Rewrite the code implementing __import__ for importlib. Now it is much simpler by Brett Cannon · 17 years ago
  94. 97d3aa5 use the classmethod directive by Benjamin Peterson · 17 years ago
  95. 78246b6 Document both importlib.machinery.BuiltinImporter and FrozenImporter. by Brett Cannon · 17 years ago
  96. 33418c8 Fix markup for arguments in importlib docs. by Brett Cannon · 17 years ago
  97. afccd63 Document the (very small) public API for importlib. As time goes on and some by Brett Cannon · 17 years ago