1. b7354a6 Fixing broken links in doc, part 4: some more breaks and redirects by Georg Brandl · 10 years ago
  2. e73778c Use https:// URLs when referring to python.org hosts. by Georg Brandl · 10 years ago
  3. 062fcac Issue #21438: Document what loaders don't require a module name for by Brett Cannon · 10 years ago
  4. 08af000 Get rid of deprecated IOError in the doc by Andrew Svetlov · 10 years ago
  5. df48b97 Fix a few scoping issues with versionadded/versionchanged directives. by Georg Brandl · 10 years ago
  6. 3732ed2 Merge in all documentation changes since branching 3.4.0rc1. by Larry Hastings · 10 years ago
  7. 3303b6a Merge for issue #20488 by Brett Cannon · 11 years ago
  8. 07fbd78 Issue #20488: Update docs to say importlib is *the* implementaiton of by Brett Cannon · 11 years ago
  9. 6029e08 Issue 19944: Fix importlib.find_spec() so it imports parents as needed. by Eric Snow · 11 years ago
  10. 0ae7ae1 whatsnew: InspectLoader.get_code now concrete, b32decode raises binascii.Error. by R David Murray · 11 years ago
  11. 8d94229 Issue #19719: Update various finder and loader ABCs such that their by Brett Cannon · 11 years ago
  12. ca2d854 Issue #19713: Update importlib docs for module spec changes, including deprecations. by Eric Snow · 11 years ago
  13. 706a729 merge for issue #19963 by Brett Cannon · 11 years ago
  14. 98620d8 Issue #19963: Document that importlib.import_module() will import by Brett Cannon · 11 years ago
  15. b282b3d Issue #18864: Add a setter for ModuleSpec.has_location. by Eric Snow · 11 years ago
  16. 0e90e99 Issue #19795: Improved markup of True/False constants. by Serhiy Storchaka · 11 years ago
  17. fbc1c26 Issue #19795: Improved markup of True/False constants. by Serhiy Storchaka · 11 years ago
  18. 889d24e Revert unrelated changes introduced by changeset b2066bc8cab9 (issue #19795). by Serhiy Storchaka · 11 years ago
  19. b523f84 Implement PEP 451 (ModuleSpec). by Eric Snow · 11 years ago
  20. f6901c8 Issue #19410: Put back in special-casing of '' for by Brett Cannon · 11 years ago
  21. 8ad3786 Tweak some doc wording for importlib.reload by Brett Cannon · 11 years ago
  22. 0f5bff2 Doc markup fixes. by Georg Brandl · 11 years ago
  23. 27e27f7 Issue #18416: Have importlib.machinery.PathFinder treat '' as the cwd by Brett Cannon · 11 years ago
  24. 98b28fd Issue #18758: Fixed and improved cross-references. by Serhiy Storchaka · 11 years ago
  25. dcd01b4 [issue 19152] Add versionadded for ExtensionFileLoader.get_filename(). by Eric Snow · 11 years ago
  26. 5c4b4c5 [issue19152] Revert 832579dbafd6. by Eric Snow · 11 years ago
  27. af8566c [issue19152] Add ExtensionFileLoader.get_filename(). by Eric Snow · 11 years ago
  28. 5179445 [issue19152] Add ExtensionFileLoader.get_filename(). by Eric Snow · 11 years ago
  29. a87e31c Issue #18955: clarify what is removed by importlib.util.module_for_loader. by Brett Cannon · 11 years ago
  30. 27bc441 merge for issue #18278 by Brett Cannon · 11 years ago
  31. 29b2f17 Issue #18278: properly document how the loaders are called for FileFinder by Brett Cannon · 11 years ago
  32. a81d527 documentation suggesting something which doesn't exist by Brett Cannon · 11 years ago
  33. 390f6c1 Merge doc/argument name fix by Brett Cannon · 11 years ago
  34. 1d75382 Fix a misnaming of a method and an argument by Brett Cannon · 11 years ago
  35. f24fecd Issue #18076: Introduce imoportlib.util.decode_source(). by Brett Cannon · 11 years ago
  36. a3c9615 Issue #17907: touch up the code for imp.new_module(). by Brett Cannon · 11 years ago
  37. 05a647d Issue #18192: Introduce importlib.util.MAGIC_NUMBER and document the by Brett Cannon · 11 years ago
  38. 3fe35e6 Issue #18193: Add importlib.reload(), documenting (but not by Brett Cannon · 11 years ago
  39. 2cefb3c Various tweaks to importlib docs. by Brett Cannon · 11 years ago
  40. 0dbb4c7 Issues #18088, 18089: Introduce by Brett Cannon · 11 years ago
  41. b60a43e Add a reset_name argument to importlib.util.module_to_load in order to by Brett Cannon · 11 years ago
  42. 1773811 Add a reference to module_to_load by Brett Cannon · 11 years ago
  43. 357c9fb Rename importlib.util.ModuleManager to module_to_load so that the name by Brett Cannon · 11 years ago
  44. 56dfc21 Undo a recommendation as load_module() methods might be called directly by Brett Cannon · 11 years ago
  45. 3dc48d6 Issue #18070: importlib.util.module_for_loader() now sets __loader__ by Brett Cannon · 11 years ago
  46. a22faca Clarify some documentation by Brett Cannon · 11 years ago
  47. a3687f0 Introduce importlib.util.ModuleManager which is a context manager to by Brett Cannon · 11 years ago
  48. 3b62ca8 Issue #18072: Implement get_code() for importlib.abc.InspectLoader and by Brett Cannon · 11 years ago
  49. 9ffe85e Move importlib.abc.SourceLoader.source_to_code() to InspectLoader. by Brett Cannon · 11 years ago
  50. b39567a merge by Brett Cannon · 11 years ago
  51. 4c14b5d #17115,17116: Have modules initialize the __package__ and __loader__ by Brett Cannon · 11 years ago
  52. 1f6ee73 merge for issue #17357 by Brett Cannon · 11 years ago
  53. 4067aa2 Issue #17357: Use more stern wording for importlib.invalidate_caches(). by Brett Cannon · 11 years ago
  54. 526575d Fix invalid markup. by Georg Brandl · 11 years ago
  55. 100883f Issue #17093,17566,17567: Methods from classes in importlib.abc now raise/return by Brett Cannon · 11 years ago
  56. 3279923 Issue #17099: Have importlib.find_loader() raise ValueError when by Brett Cannon · 11 years ago
  57. 4802bec Issue #17117: Have both import itself and importlib.util.set_loader() by Brett Cannon · 11 years ago
  58. 597ba7e Issue #17215: Fix documentation misprints (patch by July Tikhonov) by Andrew Svetlov · 12 years ago
  59. a60de4f Issue #17215: Fix documentation misprints (patch by July Tikhonov) by Andrew Svetlov · 12 years ago
  60. a6cfb28 Issue #15627: This is simply an update to the name of a new method recently added by Eric Snow · 12 years ago
  61. 5650e4f Issue #15627: Add the compile_source() method to importlib.abc.SourceLoader. by Brett Cannon · 12 years ago
  62. 10f1981 Merge fix for #16489 from 3.3 by Brett Cannon · 12 years ago
  63. 56b4ca7 Issue #16489: Make it clearer that importlib.find_loader() requires by Brett Cannon · 12 years ago
  64. 90a654b Issue #15641: Clean up deprecated classes from importlib by Andrew Svetlov · 12 years ago
  65. 1f67e80 Fix typo. by Ezio Melotti · 12 years ago
  66. 1b79918 Issue #15640: Document importlib.abc.Finder as deprecated. by Brett Cannon · 12 years ago
  67. 27bbcfb Merge #15543: glossary entry for and 'universal newlines', and links to it. by R David Murray · 12 years ago
  68. ee0a945 #15543: reflow paragraphs. by R David Murray · 12 years ago
  69. 1b00f25 #15543: glossary entry for and 'universal newlines', and links to it. by R David Murray · 12 years ago
  70. a865654 Push importlib ABC hierarchy chart. by Andrew Svetlov · 12 years ago
  71. a6e8581 Minor doc formatting cleanup. by Brett Cannon · 12 years ago
  72. ac9f2f3 Issue #15576: Allow extension modules to be a package's __init__ by Brett Cannon · 12 years ago
  73. f4dc920 Issue #15502: Finish bringing importlib.abc in line with the current by Brett Cannon · 12 years ago
  74. cb4996a Issue #15471: Don't use mutable object as default values for the by Brett Cannon · 12 years ago
  75. 077ef45 Update the What's New details for importlib based on doc/ABC changes. by Brett Cannon · 12 years ago
  76. 773468f Ditch the 'self' argument in importlib docs since it's implied. by Brett Cannon · 12 years ago
  77. 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 · 12 years ago
  78. 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 · 12 years ago
  79. 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 · 12 years ago
  80. d7d2194 Integration of importdocs from the features/pep-420 repo. by Barry Warsaw · 12 years ago
  81. c5afd42 Fix importlib.machinery.all_suffixes docs by Nick Coghlan · 12 years ago
  82. 76e0770 Close #15387: inspect.getmodulename() now uses a new importlib.machinery.all_suffixes() API rather than the deprecated inspect.getmoduleinfo() by Nick Coghlan · 12 years ago
  83. 1e33156 Closes #15030: Make importlib.abc.PyPycLoader respect the new .pyc by Brett Cannon · 12 years ago
  84. 61063cc Fix a couple of versionadded/versionchanged related markup errors. by Georg Brandl · 12 years ago
  85. ea0b823 Issue #14938: importlib.abc.SourceLoader.is_package() now takes the by Brett Cannon · 12 years ago
  86. d200bf5 Add importlib.util.resolve_name(). by Brett Cannon · 12 years ago
  87. ee78a2b Issue #13959: Introduce importlib.find_loader(). by Brett Cannon · 12 years ago
  88. c049952 Issue #13959: Have by Brett Cannon · 12 years ago
  89. cb66eb0 Issue #13959: Deprecate imp.get_suffixes() for new attributes on by Brett Cannon · 12 years ago
  90. efad00d Issue #14646: __import__() now sets __loader__ if need be. by Brett Cannon · 12 years ago
  91. 4fe29c9 Issue #14605: Rename _SourcelessFileLoader to SourcelessFileLoader. by Marc-Andre Lemburg · 12 years ago
  92. ac8805a Issue #14605: Revert renaming of _SourcelessFileLoader, since it caused by Marc-Andre Lemburg · 12 years ago
  93. 2945e78 Issue #14605: Rename _SourcelessFileLoader to SourcelessFileLoader by Marc-Andre Lemburg · 12 years ago
  94. 938d44d Issue #14605: Expose importlib.abc.FileLoader and by Brett Cannon · 12 years ago
  95. 83ac013 Clarify importlib.machinery.PathFinder's difference from what __import__() does. by Brett Cannon · 13 years ago
  96. 75321e8 Minor doc cleanup. by Brett Cannon · 13 years ago
  97. b46a179 Update importlib.invalidate_caches() to be more general. by Brett Cannon · 13 years ago
  98. 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
  99. 5136ac0 Issue #13645: pyc files now contain the size of the corresponding source by Antoine Pitrou · 13 years ago
  100. 375aec2 Fix a few doc errors, mostly undefined keywords. by Georg Brandl · 14 years ago