1. 3c56145 Issue #16826: Revert fix while Windows issues are being worked out. by Meador Inge · 11 years ago
  2. c9e1dcd Issue #16826: Revert fix while Windows issues are being worked out. by Meador Inge · 11 years ago
  3. 9ab358a Issue #16826: Don't check for PYTHONCASEOK when using -E. by Meador Inge · 11 years ago
  4. d151da9 Issue #16826: Don't check for PYTHONCASEOK when using -E. by Meador Inge · 11 years ago
  5. 8e45540 Closes issue #18698: ensure importlib.reload() returns the module out of sys.modules. by Eric Snow · 11 years ago
  6. e1f1597 Closes issue #18598: Have the exception message for by Brett Cannon · 11 years ago
  7. fbcf4d7 #18681: merge with 3.3. by Ezio Melotti · 11 years ago
  8. f0cb692 Issue #18415: Normalize what type of quotes are used with string by Brett Cannon · 11 years ago
  9. 7e5d557 merge for issue #18351. by Brett Cannon · 11 years ago
  10. a53cca3 Issue #18351: Fix various issues with importlib._bootstrap._get_sourcefile(). by Brett Cannon · 11 years ago
  11. 0075110 Issue #18364: Stop using the ImportError._not_found hack. by Brett Cannon · 11 years ago
  12. 679ecb5 Issue #15767: back out 8a0ed9f63c6e, finishing the removal of by Brett Cannon · 11 years ago
  13. 82da888 Issue #15767: Revert 3a50025f1900 for ModuleNotFoundError by Brett Cannon · 11 years ago
  14. cd171c8 Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) by Brett Cannon · 11 years ago
  15. 390f6c1 Merge doc/argument name fix by Brett Cannon · 11 years ago
  16. 1d75382 Fix a misnaming of a method and an argument by Brett Cannon · 11 years ago
  17. f24fecd Issue #18076: Introduce imoportlib.util.decode_source(). by Brett Cannon · 11 years ago
  18. f4375ef importlib.abc.SourceLoader.get_source() was re-raising SyntaxError and by Brett Cannon · 11 years ago
  19. 01b0475 Issue #18115: Abstract out managing the cleanup of modules to use in by Brett Cannon · 11 years ago
  20. 13d8ff9 Issues #18058, 18057: Make importlib._bootstrap.NamespaceLoader by Brett Cannon · 11 years ago
  21. a3c9615 Issue #17907: touch up the code for imp.new_module(). by Brett Cannon · 11 years ago
  22. 05a647d Issue #18192: Introduce importlib.util.MAGIC_NUMBER and document the by Brett Cannon · 11 years ago
  23. 3fe35e6 Issue #18193: Add importlib.reload(), documenting (but not by Brett Cannon · 11 years ago
  24. 0a14066 Issue #18200: Update the stdlib (except tests) to use ModuleNotFoundError. by Brett Cannon · 11 years ago
  25. 8f5ac51 Issue #15767: Touch up ModuleNotFoundError usage by import. by Brett Cannon · 11 years ago
  26. b1611e2 Issue #15767: Introduce ModuleNotFoundError, a subclass of ImportError. by Brett Cannon · 11 years ago
  27. 12d400d explanatory comment by Brett Cannon · 11 years ago
  28. 865b292 typo fix by Brett Cannon · 11 years ago
  29. 4e694d6 tweak exception message (again) by Brett Cannon · 11 years ago
  30. af38f5a Tweak at the suggestion of Ezio Melotti for exception messages when by Brett Cannon · 11 years ago
  31. 0e75c06 fix whitespace by Brett Cannon · 11 years ago
  32. 0dbb4c7 Issues #18088, 18089: Introduce by Brett Cannon · 11 years ago
  33. f1d7b11 Docstring cleanup by Brett Cannon · 11 years ago
  34. c29cb41 Fix for last commit on adding reset_name to module_to_load by Brett Cannon · 11 years ago
  35. b60a43e Add a reset_name argument to importlib.util.module_to_load in order to by Brett Cannon · 11 years ago
  36. 357c9fb Rename importlib.util.ModuleManager to module_to_load so that the name by Brett Cannon · 11 years ago
  37. 3dc48d6 Issue #18070: importlib.util.module_for_loader() now sets __loader__ by Brett Cannon · 11 years ago
  38. a3687f0 Introduce importlib.util.ModuleManager which is a context manager to by Brett Cannon · 11 years ago
  39. 3b62ca8 Issue #18072: Implement get_code() for importlib.abc.InspectLoader and by Brett Cannon · 11 years ago
  40. 9ffe85e Move importlib.abc.SourceLoader.source_to_code() to InspectLoader. by Brett Cannon · 11 years ago
  41. e8e1459 rather than passing locals to the class body, just execute the class body in the proper environment by Benjamin Peterson · 11 years ago
  42. 312595c hide the __class__ closure from the class body (#12370) by Benjamin Peterson · 11 years ago
  43. 4c14b5d #17115,17116: Have modules initialize the __package__ and __loader__ by Brett Cannon · 11 years ago
  44. 3b0431d check local class namespace before reaching for cells (closes #17853) by Benjamin Peterson · 11 years ago
  45. edfd6ae Issue #17244: Don't mask exceptions raised during the creation of by Brett Cannon · 11 years ago
  46. 100883f Issue #17093,17566,17567: Methods from classes in importlib.abc now raise/return by Brett Cannon · 11 years ago
  47. daf4daa merge by Brett Cannon · 11 years ago
  48. f8ffec0 Issue #17357: Add missing verbosity messages when running under by Brett Cannon · 11 years ago
  49. 765531d Issue #17516: use comment syntax for comments, instead of multiline string by Victor Stinner · 11 years ago
  50. 440282b copy 2.7 magic numbers for historical interest by Benjamin Peterson · 11 years ago
  51. 3279923 Issue #17099: Have importlib.find_loader() raise ValueError when by Brett Cannon · 11 years ago
  52. 4802bec Issue #17117: Have both import itself and importlib.util.set_loader() by Brett Cannon · 11 years ago
  53. c190389 Issue #17220: two fixes for changeset 2528e4aea338. by Brett Cannon · 11 years ago
  54. 39e47f9 Issue #17220: Little cleanup of _bootstrap.py. by Serhiy Storchaka · 11 years ago
  55. 5df9f82 Merge from 3.3 by Eric Snow · 12 years ago
  56. 5b49962 Fixes a FileFinder docstring to reflect an old change. by Eric Snow · 12 years ago
  57. 419d9a8 evaluate lambda keyword-only defaults after positional defaults (#16967 again) by Benjamin Peterson · 12 years ago
  58. 1ef876c evaluate positional defaults before keyword-only defaults (closes #16967) by Benjamin Peterson · 12 years ago
  59. 85ae356 Merge w/ 3.3 more fixes thanks to issue #17098 by Brett Cannon · 12 years ago
  60. da9cf0e Issue #17098: Be more stringent of setting __loader__ on early imported by Brett Cannon · 12 years ago
  61. 611afc1 Issue #17098: all modules should have __loader__ by Brett Cannon · 12 years ago
  62. 0ecd30b Issue #17098: Make sure every module has __loader__ defined. by Brett Cannon · 12 years ago
  63. f3220d6 Tweak an exception message by Brett Cannon · 12 years ago
  64. 14581d5 Port py_compile over to importlib by Brett Cannon · 12 years ago
  65. 686e880 Touch up exception messaging by Brett Cannon · 12 years ago
  66. 569ff4f Issue #15031: Refactor some code in importlib pertaining to validating by Brett Cannon · 12 years ago
  67. c57f9f9 Merge from 3.3 for fix for issue #16730 by Brett Cannon · 12 years ago
  68. a9976b3 Issue #16730: Don't raise an exception in by Brett Cannon · 12 years ago
  69. f7a17b4 Replace IOError with OSError (#16715) by Andrew Svetlov · 12 years ago
  70. 2606a6f Issue #16719: Get rid of WindowsError. Use OSError instead by Andrew Svetlov · 12 years ago
  71. a6cfb28 Issue #15627: This is simply an update to the name of a new method recently added by Eric Snow · 12 years ago
  72. b72c109 - Issue #16514: Fix regression causing a traceback when sys.path[0] is None by Barry Warsaw · 12 years ago
  73. 82c1c78 - Issue #16514: Fix regression causing a traceback when sys.path[0] is None by Barry Warsaw · 12 years ago
  74. 5650e4f Issue #15627: Add the compile_source() method to importlib.abc.SourceLoader. by Brett Cannon · 12 years ago
  75. 10f1981 Merge fix for #16489 from 3.3 by Brett Cannon · 12 years ago
  76. 56b4ca7 Issue #16489: Make it clearer that importlib.find_loader() requires by Brett Cannon · 12 years ago
  77. 2982455 merge 3.3 by Benjamin Peterson · 12 years ago
  78. debf64c missing letter by Benjamin Peterson · 12 years ago
  79. 90a654b Issue #15641: Clean up deprecated classes from importlib by Andrew Svetlov · 12 years ago
  80. d4f5ad6 Merge fix from #6074 from 3.3 by Nick Coghlan · 12 years ago
  81. eb8d627 Issue #6074: Apply an appropriate fix for importlib based imports by Nick Coghlan · 12 years ago
  82. 744fadd Merge issue #15833: don't raise an exception if importlib can't write by Trent Nelson · 12 years ago
  83. d783c8e Issue #15833: don't raise an exception if importlib can't write byte-compiled by Trent Nelson · 12 years ago
  84. 6072e0b Remove uses of % with str.format. by Brett Cannon · 12 years ago
  85. 9407d50 Merge fix for issue #15111. by Brett Cannon · 12 years ago
  86. a6ce4fd Closes issue #15111: Calling __import__ with a module specified in by Brett Cannon · 12 years ago
  87. 4791a24 #16135: Removal of OS/2 support (Python code partial cleanup) by Jesus Cea · 12 years ago
  88. 8ed677d Add some comments. by Brett Cannon · 12 years ago
  89. 52c62d8 rephrase by Benjamin Peterson · 12 years ago
  90. feaa54f don't depend on __debug__ because it's baked in at freeze time (issue #16046) by Benjamin Peterson · 12 years ago
  91. 4f0338c Issue #15781: Fix two small race conditions in import's module locking. by Antoine Pitrou · 12 years ago
  92. 12c6bda Issue #15316: Let exceptions raised during imports triggered by the by Brett Cannon · 12 years ago
  93. ba0a3ed Issue #2051: Tweak last commit for this issue to pass in mode instead by Brett Cannon · 12 years ago
  94. 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
  95. 48fec05 Close #14846: Handle a sys.path entry going away by Nick Coghlan · 12 years ago
  96. 7385adc Issue #15715: Ignore failed imports triggered by the use of fromlist. by Brett Cannon · 12 years ago
  97. b428f47 Don't overwrite a __path__ value from extension modules if already set. by Brett Cannon · 12 years ago
  98. 688a551 fix docstring wording by Philip Jenvey · 12 years ago
  99. f410ce8 Issue #15502: Refactor some code. by Brett Cannon · 12 years ago
  100. 731d48a update docstring per the extension package fix, refactor by Philip Jenvey · 12 years ago