1. 5976b9a Refresh Python/importlib.h and Python/importlib_external.h (#464) by Ned Deily · 7 years ago
  2. 7db3c48 Issue #28517: Fixed of-by-one error in the peephole optimizer that caused by Serhiy Storchaka · 8 years ago
  3. 3738c2d Issue #27942: String constants now interned recursively in tuples and frozensets. by Serhiy Storchaka · 8 years ago
  4. 00a0fc1 Issue #27942: String constants now interned recursively in tuples and frozensets. by Serhiy Storchaka · 8 years ago
  5. b728105 Issue #27213: Fixed different issues with reworked CALL_FUNCTION* opcodes. by Serhiy Storchaka · 8 years ago
  6. f9b760f Rework CALL_FUNCTION* opcodes by Victor Stinner · 8 years ago
  7. f3fd06a Issue #28026: Raise ImportError when exec_module() exists but create_module() is missing. by Eric Snow · 8 years ago
  8. 46f97b8 Issue #15767: Use ModuleNotFoundError. by Eric Snow · 8 years ago
  9. eaecc69 Issue #27974: Remove importlib._bootstrap._ManageReload. by Brett Cannon · 8 years ago
  10. ea525a2 Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation. by Serhiy Storchaka · 8 years ago
  11. 2247e5c Update frozen importlib code by Brett Cannon · 8 years ago
  12. 64204de Issue #27095: Simplified MAKE_FUNCTION and removed MAKE_CLOSURE opcodes. by Serhiy Storchaka · 8 years ago
  13. 3e04d5b Issue #27076: Merge spelling from 3.5 by Martin Panter · 8 years ago
  14. 46f5072 Issue #27076: Doc, comment and tests spelling fixes by Martin Panter · 8 years ago
  15. b0f80b0 Issue #26647: Python interpreter now uses 16-bit wordcode instead of bytecode. by Serhiy Storchaka · 8 years ago
  16. 4f17426 Fix bug in __import__ during Python shutdown by Victor Stinner · 8 years ago
  17. 0911c0d Merge for issue #26367 by Brett Cannon · 8 years ago
  18. 4f38cb4 Issue #26367: Have importlib.__init__() raise RuntimeError when by Brett Cannon · 8 years ago
  19. 849113a Issue #25791: Warn when __package__ != __spec__.parent. by Brett Cannon · 8 years ago
  20. 63b8505 Issue #25791: Raise an ImportWarning when __spec__ or __package__ are by Brett Cannon · 8 years ago
  21. 1df0b35 Issue #24769: Interpreter now starts properly when dynamic loading by Larry Hastings · 9 years ago
  22. d5cacbb PEP 489: Multi-phase extension module initialization by Nick Coghlan · 9 years ago
  23. 183a941 Issue #24192: Fix namespace package imports. by Eric Snow · 9 years ago
  24. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 9 years ago
  25. 32439d6 Issue #23911: Move path-based bootstrap code to a separate frozen module. by Eric Snow · 9 years ago
  26. f299abd Issue #23731: Implement PEP 488. by Brett Cannon · 9 years ago
  27. f86d1fd merge 3.4 (#21295) by Benjamin Peterson · 9 years ago
  28. 7a66fc2 revert lineno and col_offset changes from #16795 (closes #21295) by Benjamin Peterson · 9 years ago
  29. 02d8454 Issue #23014: Make importlib.abc.Loader.create_module() required when by Brett Cannon · 9 years ago
  30. cd441c4 Update Python/importlib.h by Zachary Ware · 9 years ago
  31. 2a41385 - Issue #22966: Fix __pycache__ pyc file name clobber when pyc_compile is by Barry Warsaw · 9 years ago
  32. d32d4ae - Issue #22966: Fix __pycache__ pyc file name clobber when pyc_compile is by Barry Warsaw · 9 years ago
  33. da8cef4 Issue #22934: Update the comment to mention Programs/_freeze_importlib.c. by Berker Peksag · 10 years ago
  34. d3c53b6 Update importlib.h by Antoine Pitrou · 10 years ago
  35. b6e2556 Issue #22834: Have import suppress FileNotFoundError when the current by Brett Cannon · 10 years ago
  36. 5e8b04e Issue #21052: Don't raise ImportWarning for sys.meta_path or by Brett Cannon · 10 years ago
  37. daa910a Update importlib.h frozen bytecode (changed due to commit c0ca9d32aed4). by Georg Brandl · 10 years ago
  38. 42535f0 Fix a parameter name to make sense again by Brett Cannon · 10 years ago
  39. 2a17bde Issue #20383: Introduce importlib.util.module_from_spec(). by Brett Cannon · 10 years ago
  40. b7f1be3 Merge from 3.4 (for #21226). by Eric Snow · 10 years ago
  41. 08197a4 Issue #21226: Set all attrs in PyImport_ExecCodeModuleObject. by Eric Snow · 10 years ago
  42. d51374e PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) by Benjamin Peterson · 10 years ago
  43. 26dd0ff Issue #20763: Fix importlib.machinery.PathFinder to support by Brett Cannon · 10 years ago
  44. d3acef9 Issue #20763: Fix importlib.machinery.PathFinder to support by Brett Cannon · 10 years ago
  45. 45d8e7b update magic number for #20625 by Benjamin Peterson · 10 years ago
  46. a50fd87 update magic number for #20625 by Benjamin Peterson · 10 years ago
  47. e4314e0 Issue 19713: Remove PEP 451-related code that should have been factored out. by Eric Snow · 10 years ago
  48. 77561cc Issue #20141: Improved Argument Clinic's support for the PyArg_Parse "O!" by Larry Hastings · 10 years ago
  49. 1500d49 Issue 19713: Add PEP 451-related deprecations. by Eric Snow · 10 years ago
  50. d749c7a Issue #19927: Add __eq__ to path-based loaders in importlib. by Eric Snow · 10 years ago
  51. fbc7851 Issue #20097: Fix bad use of "self" in importlib's WindowsRegistryFinder. by Eric Snow · 10 years ago
  52. 61e851b Remove some dead code in importlib, introduced with the PEP 451 patch. by Eric Snow · 10 years ago
  53. b282b3d Issue #18864: Add a setter for ModuleSpec.has_location. by Eric Snow · 10 years ago
  54. d2476c6 Issue #19698: Remove exec_module() from the built-in and extension by Brett Cannon · 10 years ago
  55. 224b261 User the repr for a module name in more places by Brett Cannon · 11 years ago
  56. 175e725 Remove a commented-out line by Brett Cannon · 11 years ago
  57. fddc311 Don't assume trying to find a builtin will succeed (e.g. posix isn't on Windows) by Brett Cannon · 11 years ago
  58. b523f84 Implement PEP 451 (ModuleSpec). by Eric Snow · 11 years ago
  59. 2b8fc30 Abstract out stat calls in importlib for easier experimentation. by Brett Cannon · 11 years ago
  60. f6901c8 Issue #19410: Put back in special-casing of '' for by Brett Cannon · 11 years ago
  61. cdf6012 Issue #19413: Restore pre-3.3 reload() semantics of re-finding modules. by Eric Snow · 11 years ago
  62. 6b4f780 cleanup the construction of __qualname__ (closes #19301 again) by Benjamin Peterson · 11 years ago
  63. 3d9e481 give explicitly global functions and classes a global __qualname__ (closes #19301) by Benjamin Peterson · 11 years ago
  64. 58f5680 Issue #18810: Be optimistic with stat calls when seeing if a directory by Brett Cannon · 11 years ago
  65. bb9e481 Issue #18416: Fix various os calls in importlib.machinery.FileFinder by Brett Cannon · 11 years ago
  66. 27e27f7 Issue #18416: Have importlib.machinery.PathFinder treat '' as the cwd by Brett Cannon · 11 years ago
  67. 1164dfc Issue #19219: Speed up marshal.loads(), and make pyc files slightly (5% to 10%) smaller. by Antoine Pitrou · 11 years ago
  68. 5179445 [issue19152] Add ExtensionFileLoader.get_filename(). by Eric Snow · 11 years ago
  69. e8bbfeb [issue19951] Fix docstring and use of _get_suppported_file_loaders() to reflect 2-tuples. by Eric Snow · 11 years ago
  70. 3c56145 Issue #16826: Revert fix while Windows issues are being worked out. by Meador Inge · 11 years ago
  71. c9e1dcd Issue #16826: Revert fix while Windows issues are being worked out. by Meador Inge · 11 years ago
  72. 9ab358a Issue #16826: Don't check for PYTHONCASEOK when using -E. by Meador Inge · 11 years ago
  73. d151da9 Issue #16826: Don't check for PYTHONCASEOK when using -E. by Meador Inge · 11 years ago
  74. f0cb692 Issue #18415: Normalize what type of quotes are used with string by Brett Cannon · 11 years ago
  75. 7e5d557 merge for issue #18351. by Brett Cannon · 11 years ago
  76. a53cca3 Issue #18351: Fix various issues with importlib._bootstrap._get_sourcefile(). by Brett Cannon · 11 years ago
  77. 0075110 Issue #18364: Stop using the ImportError._not_found hack. by Brett Cannon · 11 years ago
  78. 679ecb5 Issue #15767: back out 8a0ed9f63c6e, finishing the removal of by Brett Cannon · 11 years ago
  79. 82da888 Issue #15767: Revert 3a50025f1900 for ModuleNotFoundError by Brett Cannon · 11 years ago
  80. 1d75382 Fix a misnaming of a method and an argument by Brett Cannon · 11 years ago
  81. f24fecd Issue #18076: Introduce imoportlib.util.decode_source(). by Brett Cannon · 11 years ago
  82. f4375ef importlib.abc.SourceLoader.get_source() was re-raising SyntaxError and by Brett Cannon · 11 years ago
  83. 01b0475 Issue #18115: Abstract out managing the cleanup of modules to use in by Brett Cannon · 11 years ago
  84. 13d8ff9 Issues #18058, 18057: Make importlib._bootstrap.NamespaceLoader by Brett Cannon · 11 years ago
  85. a3c9615 Issue #17907: touch up the code for imp.new_module(). by Brett Cannon · 11 years ago
  86. 05a647d Issue #18192: Introduce importlib.util.MAGIC_NUMBER and document the by Brett Cannon · 11 years ago
  87. 8f5ac51 Issue #15767: Touch up ModuleNotFoundError usage by import. by Brett Cannon · 11 years ago
  88. b1611e2 Issue #15767: Introduce ModuleNotFoundError, a subclass of ImportError. by Brett Cannon · 11 years ago
  89. 4e694d6 tweak exception message (again) by Brett Cannon · 11 years ago
  90. af38f5a Tweak at the suggestion of Ezio Melotti for exception messages when by Brett Cannon · 11 years ago
  91. 0dbb4c7 Issues #18088, 18089: Introduce by Brett Cannon · 11 years ago
  92. 357c9fb Rename importlib.util.ModuleManager to module_to_load so that the name by Brett Cannon · 11 years ago
  93. 3dc48d6 Issue #18070: importlib.util.module_for_loader() now sets __loader__ by Brett Cannon · 11 years ago
  94. f5fe130 Update importlib.h by Brett Cannon · 11 years ago
  95. a3687f0 Introduce importlib.util.ModuleManager which is a context manager to by Brett Cannon · 11 years ago
  96. e8e1459 rather than passing locals to the class body, just execute the class body in the proper environment by Benjamin Peterson · 11 years ago
  97. 312595c hide the __class__ closure from the class body (#12370) by Benjamin Peterson · 11 years ago
  98. 4c14b5d #17115,17116: Have modules initialize the __package__ and __loader__ by Brett Cannon · 11 years ago
  99. 3b0431d check local class namespace before reaching for cells (closes #17853) by Benjamin Peterson · 11 years ago
  100. edfd6ae Issue #17244: Don't mask exceptions raised during the creation of by Brett Cannon · 11 years ago