1. da9cf0e Issue #17098: Be more stringent of setting __loader__ on early imported by Brett Cannon · 11 years ago
  2. 0ecd30b Issue #17098: Make sure every module has __loader__ defined. by Brett Cannon · 11 years ago
  3. a9976b3 Issue #16730: Don't raise an exception in by Brett Cannon · 12 years ago
  4. 82c1c78 - Issue #16514: Fix regression causing a traceback when sys.path[0] is None by Barry Warsaw · 12 years ago
  5. 56b4ca7 Issue #16489: Make it clearer that importlib.find_loader() requires by Brett Cannon · 12 years ago
  6. debf64c missing letter by Benjamin Peterson · 12 years ago
  7. eb8d627 Issue #6074: Apply an appropriate fix for importlib based imports by Nick Coghlan · 12 years ago
  8. d783c8e Issue #15833: don't raise an exception if importlib can't write byte-compiled by Trent Nelson · 12 years ago
  9. a6ce4fd Closes issue #15111: Calling __import__ with a module specified in by Brett Cannon · 12 years ago
  10. 8ed677d Add some comments. by Brett Cannon · 12 years ago
  11. 52c62d8 rephrase by Benjamin Peterson · 12 years ago
  12. feaa54f don't depend on __debug__ because it's baked in at freeze time (issue #16046) by Benjamin Peterson · 12 years ago
  13. 4f0338c Issue #15781: Fix two small race conditions in import's module locking. by Antoine Pitrou · 12 years ago
  14. 12c6bda Issue #15316: Let exceptions raised during imports triggered by the by Brett Cannon · 12 years ago
  15. ba0a3ed Issue #2051: Tweak last commit for this issue to pass in mode instead by Brett Cannon · 12 years ago
  16. a508770 Close #2501: Permission bits are once again correctly copied from the source file to the cached bytecode file. Test by Eric Snow. by Nick Coghlan · 12 years ago
  17. 48fec05 Close #14846: Handle a sys.path entry going away by Nick Coghlan · 12 years ago
  18. 7385adc Issue #15715: Ignore failed imports triggered by the use of fromlist. by Brett Cannon · 12 years ago
  19. b428f47 Don't overwrite a __path__ value from extension modules if already set. by Brett Cannon · 12 years ago
  20. 688a551 fix docstring wording by Philip Jenvey · 12 years ago
  21. f410ce8 Issue #15502: Refactor some code. by Brett Cannon · 12 years ago
  22. 731d48a update docstring per the extension package fix, refactor by Philip Jenvey · 12 years ago
  23. ac9f2f3 Issue #15576: Allow extension modules to be a package's __init__ by Brett Cannon · 12 years ago
  24. f4dc920 Issue #15502: Finish bringing importlib.abc in line with the current by Brett Cannon · 12 years ago
  25. cb4996a Issue #15471: Don't use mutable object as default values for the by Brett Cannon · 12 years ago
  26. 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
  27. 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
  28. 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
  29. 38f75cb Typo. by Barry Warsaw · 12 years ago
  30. 9a5af12 merge by Barry Warsaw · 12 years ago
  31. 42c0766 Close #15486: Simplify the mechanism used to remove importlib frames from tracebacks when they just introduce irrelevant noise by Nick Coghlan · 12 years ago
  32. dee609c merged by Barry Warsaw · 12 years ago
  33. d7d2194 Integration of importdocs from the features/pep-420 repo. by Barry Warsaw · 12 years ago
  34. 5ee9892 Close #15425: Eliminate more importlib related traceback noise by Nick Coghlan · 12 years ago
  35. e3010a8 Issue #14578: Support modules registered in the Windows registry again. by Martin v. Löwis · 12 years ago
  36. 45a5e3a Issue #15168: Move importlb.test to test.test_importlib. by Brett Cannon · 12 years ago
  37. be7e49f Close #15386: There was a loophole that meant importlib.machinery and imp would sometimes reference an uninitialised copy of importlib._bootstrap by Nick Coghlan · 12 years ago
  38. 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
  39. 2824cb5 Issue #15343: A lot more than just unicode decoding can go wrong when retrieving a source file by Nick Coghlan · 12 years ago
  40. a6473f9 Issues #15169, #14599: Make PyImport_ExecCodeModuleWithPathnames() use by Brett Cannon · 12 years ago
  41. 461c813 Issue #15111: When a module was imported using a 'from import' by Brett Cannon · 12 years ago
  42. 77b2abd Issue #15167 (as part of #13959): imp.get_magic() is no implemented in by Brett Cannon · 12 years ago
  43. 19a2f59 Issue #15056: imp.cache_from_source() and source_from_cache() raise by Brett Cannon · 12 years ago
  44. 1ced17d Issue #15110: Copy same docstring as other '_exec_module' methods. by Amaury Forgeot d'Arc · 12 years ago
  45. ae7b8f0 Issue #15110: Also hide importlib frames when importing a builtin module fails. by Amaury Forgeot d'Arc · 12 years ago
  46. bc07a5c Issue #15110: Fix the tracebacks generated by "import xxx" to not show the importlib stack frames. by Antoine Pitrou · 12 years ago
  47. 79d79a0 Minor refactoring in importlib._bootstrap, and fix the '_wrap' docstring. by Florent Xicluna · 12 years ago
  48. 53089c6 Issue #15210: Greatly simplify the test for supporting importlib by Brett Cannon · 12 years ago
  49. 98979b8 Issue #15166: Re-implement imp.get_tag() using sys.implementation. by Brett Cannon · 12 years ago
  50. 8e2f556 Issue #15210: If _frozen_importlib is not found in sys.modules by by Brett Cannon · 12 years ago
  51. 1e33156 Closes #15030: Make importlib.abc.PyPycLoader respect the new .pyc by Brett Cannon · 12 years ago
  52. b109515 Use assertIsNone. Thanks Terry Reedy. by Eric V. Smith · 12 years ago
  53. faae3ad Changed importlib tests to use assertIs, assertIsInstance, etc., instead of just assertTrue. by Eric V. Smith · 12 years ago
  54. e51a369 Fixes issue 15039: namespace packages are no longer imported in preference to modules of the same name. by Eric V. Smith · 12 years ago
  55. 310f95b A better repr() for FileFinder by Antoine Pitrou · 12 years ago
  56. d5a1a21 Prevent test_inspect from keeping alive a ton of frames and local variables by way of a global variable keeping a reference to a traceback. by Antoine Pitrou · 12 years ago
  57. 48114b9 Issue #14657: The frozen instance of importlib used for bootstrap is now also the module imported as importlib._bootstrap. by Antoine Pitrou · 12 years ago
  58. ea0b823 Issue #14938: importlib.abc.SourceLoader.is_package() now takes the by Brett Cannon · 12 years ago
  59. 5c6eba3 Tweak importlib._bootstrap to avoid zero-argument super so I can work on issue #14857 without breaking imports by Nick Coghlan · 12 years ago
  60. d785cb3 Remove some redundant decorators. by Brett Cannon · 12 years ago
  61. 283d0ba Whitespace cleanup. by Eric V. Smith · 12 years ago
  62. 984b11f issue 14660: Implement PEP 420, namespace packages. by Eric V. Smith · 12 years ago
  63. ea3eb88 Issue #9260: A finer-grained import lock. by Antoine Pitrou · 12 years ago
  64. d200bf5 Add importlib.util.resolve_name(). by Brett Cannon · 12 years ago
  65. ee78a2b Issue #13959: Introduce importlib.find_loader(). by Brett Cannon · 12 years ago
  66. c049952 Issue #13959: Have by Brett Cannon · 12 years ago
  67. cb66eb0 Issue #13959: Deprecate imp.get_suffixes() for new attributes on by Brett Cannon · 12 years ago
  68. 810c64d Issue #14764: Update importlib.test.benchmark to work in a world where by Brett Cannon · 12 years ago
  69. 6efa50a Issue #14583: Fix importlib bug when a package's __init__.py would first import one of its modules then raise an error. by Antoine Pitrou · 12 years ago
  70. feccc09 Clean up a docstring. by Brett Cannon · 12 years ago
  71. f19c191 Jython-friendly tweak. by Brett Cannon · 12 years ago
  72. 2657df4 Issue #13959: Re-implement imp.get_suffixes() in Lib/imp.py. by Brett Cannon · 12 years ago
  73. 17098a5 Properly mark names in importlib._bootstrap as private. by Brett Cannon · 12 years ago
  74. efad00d Issue #14646: __import__() now sets __loader__ if need be. by Brett Cannon · 12 years ago
  75. aa93642 Issue #14605: Use None in sys.path_importer_cache to represent no by Brett Cannon · 12 years ago
  76. ce418b4 Issue #14605: Stop having implicit entries for sys.meta_path. by Brett Cannon · 12 years ago
  77. e0d88a1 Issue #14605: Make explicit the entries on sys.path_hooks that used to by Brett Cannon · 12 years ago
  78. 7541c8e Issue #14605 and #14642: by Marc-Andre Lemburg · 12 years ago
  79. 4fe29c9 Issue #14605: Rename _SourcelessFileLoader to SourcelessFileLoader. by Marc-Andre Lemburg · 12 years ago
  80. ac8805a Issue #14605: Revert renaming of _SourcelessFileLoader, since it caused by Marc-Andre Lemburg · 12 years ago
  81. 2945e78 Issue #14605: Rename _SourcelessFileLoader to SourcelessFileLoader by Marc-Andre Lemburg · 12 years ago
  82. 938d44d Issue #14605: Expose importlib.abc.FileLoader and by Brett Cannon · 12 years ago
  83. 5c903e6 Issue #13959: Continue to try to accomodate altsep in importlib by not by Brett Cannon · 12 years ago
  84. cf64995 Revert to os.path.join() semantics for path manipulation in importlib by Brett Cannon · 12 years ago
  85. a846236 Continue the good fight to get Windows to like importlib by fixing a by Brett Cannon · 12 years ago
  86. 0d05a76 Have importlib look for pre-existing path separators when joining paths. by Brett Cannon · 12 years ago
  87. 2f92389 Don't worry about moving imp.get_tag() over to Lib/imp.py. by Brett Cannon · 12 years ago
  88. a64faf0 Issue #13959: Re-implement imp.source_from_cache() in Lib/imp.py. by Brett Cannon · 12 years ago
  89. ea59dbf Issue #13959: Re-implement imp.cache_from_source() in Lib/imp.py. by Brett Cannon · 12 years ago
  90. ed672d6 Make path manipulation more robust for platforms with alternative path by Brett Cannon · 12 years ago
  91. 24117a7 Issue #13959: Keep imp.get_magic() in C code, but cache in importlib by Brett Cannon · 12 years ago
  92. 1032af9 Issue #14585: test_import now runs all tests under by Brett Cannon · 12 years ago
  93. 8ff6baf Issue #14581: Windows users are allowed to import modules w/o taking by Brett Cannon · 12 years ago
  94. 91900ea Have importlib.test.regrtest clear sys.path_importer_cache to make by Brett Cannon · 12 years ago
  95. 2a481e5 don't bother keeping a set we'll never use by Benjamin Peterson · 12 years ago
  96. d76bc7a rollback 005fd1fe31ab (see #14609 and #14582) by Benjamin Peterson · 12 years ago
  97. 7bd329d Issue #12599: Be more strict in accepting None vs. a false-like object by Brett Cannon · 12 years ago
  98. 273323c Issue #14592: A relative import will raise a KeyError if __package__ by Brett Cannon · 12 years ago
  99. 6f44d66 Issue #13959: Rename imp to _imp and add Lib/imp.py and begin by Brett Cannon · 12 years ago
  100. 7788838 merge by Brett Cannon · 12 years ago