1. 10beb3c Issue #28896: Disable WindowsRegistryFinder by default. by Steve Dower · 7 years ago
  2. 19d2467 Issue #23722: improve __classcell__ compatibility by Nick Coghlan · 7 years ago
  3. 7344285 Issue #28257: Improved error message when pass a non-iterable as by Serhiy Storchaka · 8 years ago
  4. 944368e Issue #23722: Initialize __class__ from type.__new__() by Nick Coghlan · 8 years ago
  5. 50fd898 Issue #24320: Drop an old setuptools-induced hack. by Eric Snow · 8 years ago
  6. f9b760f Rework CALL_FUNCTION* opcodes by Victor Stinner · 8 years ago
  7. f8cb8a1 Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations. by Yury Selivanov · 8 years ago
  8. f3fd06a Issue #28026: Raise ImportError when exec_module() exists but create_module() is missing. by Eric Snow · 8 years ago
  9. 035a100 Issue #26667: Add path-like object support to importlib.util. by Brett Cannon · 8 years ago
  10. 46f97b8 Issue #15767: Use ModuleNotFoundError. by Eric Snow · 8 years ago
  11. eaecc69 Issue #27974: Remove importlib._bootstrap._ManageReload. by Brett Cannon · 8 years ago
  12. ea525a2 Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation. by Serhiy Storchaka · 8 years ago
  13. 4106f61 Merge for #27083 by Brett Cannon · 8 years ago
  14. 7ca63cb Fix regressions introduced by fixes for issue #27083. by Brett Cannon · 8 years ago
  15. b3e73b3 Merge for #27083 by Brett Cannon · 8 years ago
  16. a47a7a5 Issue #27083: Respect the PYTHONCASEOK environment variable under Windows. by Brett Cannon · 8 years ago
  17. 3fef2ee Issue #26972: Fix some mistakes in importlib-related docstrings. by Brett Cannon · 8 years ago
  18. 696c35e Issue #26186: Remove the restriction that built-in and extension by Brett Cannon · 8 years ago
  19. da03761 Merge from 3.5 by Brett Cannon · 8 years ago
  20. e92dc9c Fix a scoping issue where an UnboundLocalError was triggered if a by Brett Cannon · 8 years ago
  21. 64204de Issue #27095: Simplified MAKE_FUNCTION and removed MAKE_CLOSURE opcodes. by Serhiy Storchaka · 8 years ago
  22. 5697c4b Comment fixes extracted from patch by Demur Rumed. by Serhiy Storchaka · 8 years ago
  23. cf2ad55 Issue #27286: Fixed compiling BUILD_MAP_UNPACK_WITH_CALL opcode. Calling by Serhiy Storchaka · 8 years ago
  24. 3c317e7 Issue #27286: Fixed compiling BUILD_MAP_UNPACK_WITH_CALL opcode. Calling by Serhiy Storchaka · 8 years ago
  25. 6a7506a Issue #27140: Added BUILD_CONST_KEY_MAP opcode. by Serhiy Storchaka · 8 years ago
  26. 0472217 Issue #27138: Fix the doc comment for FileFinder.find_spec(). by Eric Snow · 8 years ago
  27. fc36e66 Issue #27138: Fix the doc comment for FileFinder.find_spec(). by Eric Snow · 8 years ago
  28. 3e04d5b Issue #27076: Merge spelling from 3.5 by Martin Panter · 8 years ago
  29. 46f5072 Issue #27076: Doc, comment and tests spelling fixes by Martin Panter · 8 years ago
  30. b0f80b0 Issue #26647: Python interpreter now uses 16-bit wordcode instead of bytecode. by Serhiy Storchaka · 8 years ago
  31. 8d0abb9 Issue #26073: Updates magic number comment in _bootstrap_external.py and changes numbers in launcher.py to decimal to match official table. by Steve Dower · 8 years ago
  32. 7ae61af Issue #26073: Updates magic number comment in _bootstrap_external.py and changes numbers in launcher.py to decimal to match official table. by Steve Dower · 8 years ago
  33. 4f17426 Fix bug in __import__ during Python shutdown by Victor Stinner · 8 years ago
  34. 82f04e2 regrtest: Fix module.__path__ by Victor Stinner · 8 years ago
  35. e5f4d3c Merge for issue #26186 by Brett Cannon · 8 years ago
  36. 558823a Issue #26186: Remove an invalid type check in importlib.util.LazyLoader. by Brett Cannon · 8 years ago
  37. 0911c0d Merge for issue #26367 by Brett Cannon · 8 years ago
  38. 4f38cb4 Issue #26367: Have importlib.__init__() raise RuntimeError when by Brett Cannon · 8 years ago
  39. 885bdc4 Issue #25985: sys.version_info is now used instead of sys.version by Serhiy Storchaka · 8 years ago
  40. 849113a Issue #25791: Warn when __package__ != __spec__.parent. by Brett Cannon · 8 years ago
  41. f3914eb co_lnotab supports negative line number delta by Victor Stinner · 8 years ago
  42. 63b8505 Issue #25791: Raise an ImportWarning when __spec__ or __package__ are by Brett Cannon · 8 years ago
  43. eae3079 Issue #25802: Deprecate load_module() on importlib.machinery.SourceFileLoader and SourcelessFileLoader. by Brett Cannon · 8 years ago
  44. 65ca88e Issue #25771: Tweak ValueError message when package isn't specified by Brett Cannon · 8 years ago
  45. a78c795 Issue 25483: Add an opcode to make f-string formatting more robust. by Eric V. Smith · 9 years ago
  46. f22d808 Issue #25280: Import trace messages emitted in verbose (-v) mode are no by Serhiy Storchaka · 9 years ago
  47. 0b40aab Issue #25280: Import trace messages emitted in verbose (-v) mode are no by Serhiy Storchaka · 9 years ago
  48. f731bc0 Issue #25280: Import trace messages emitted in verbose (-v) mode are no by Serhiy Storchaka · 9 years ago
  49. 1dae0c6 Issue #25186: Remove duplicated function from importlib._bootstrap_external by Brett Cannon · 9 years ago
  50. 1df0b35 Issue #24769: Interpreter now starts properly when dynamic loading by Larry Hastings · 9 years ago
  51. 5376ba9 Issue #24400: Introduce a distinct type for 'async def' coroutines. by Yury Selivanov · 9 years ago
  52. ee85339 in dict displays, evaluate the key before the value (closes #11205) by Benjamin Peterson · 9 years ago
  53. d5cacbb PEP 489: Multi-phase extension module initialization by Nick Coghlan · 9 years ago
  54. 183a941 Issue #24192: Fix namespace package imports. by Eric Snow · 9 years ago
  55. 025e9eb PEP 448: additional unpacking generalizations (closes #2292) by Benjamin Peterson · 9 years ago
  56. 32439d6 Issue #23911: Move path-based bootstrap code to a separate frozen module. by Eric Snow · 9 years ago
  57. f299abd Issue #23731: Implement PEP 488. by Brett Cannon · 9 years ago
  58. 02d8454 Issue #23014: Make importlib.abc.Loader.create_module() required when by Brett Cannon · 9 years ago
  59. d32d4ae - Issue #22966: Fix __pycache__ pyc file name clobber when pyc_compile is by Barry Warsaw · 9 years ago
  60. 2a41385 - Issue #22966: Fix __pycache__ pyc file name clobber when pyc_compile is by Barry Warsaw · 9 years ago
  61. c446405 Issue #19720: Suppressed context for some exceptions in importlib. by Serhiy Storchaka · 10 years ago
  62. b6e2556 Issue #22834: Have import suppress FileNotFoundError when the current by Brett Cannon · 10 years ago
  63. 5e8b04e Issue #21052: Don't raise ImportWarning for sys.meta_path or by Brett Cannon · 10 years ago
  64. 42535f0 Fix a parameter name to make sense again by Brett Cannon · 10 years ago
  65. 2a17bde Issue #20383: Introduce importlib.util.module_from_spec(). by Brett Cannon · 10 years ago
  66. b7f1be3 Merge from 3.4 (for #21226). by Eric Snow · 10 years ago
  67. 08197a4 Issue #21226: Set all attrs in PyImport_ExecCodeModuleObject. by Eric Snow · 10 years ago
  68. 6eaac13 Issue #21156: importlib.abc.InspectLoader.source_to_code() is now a by Brett Cannon · 10 years ago
  69. d51374e PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) by Benjamin Peterson · 10 years ago
  70. a04dbe4 Issue #17621: Introduce importlib.util.LazyLoader. by Brett Cannon · 10 years ago
  71. a00c240 Issue #20884: Don't assume in importlib.__init__ that __file__ is defined. by Brett Cannon · 10 years ago
  72. 26dd0ff Issue #20763: Fix importlib.machinery.PathFinder to support by Brett Cannon · 10 years ago
  73. a50fd87 update magic number for #20625 by Benjamin Peterson · 10 years ago
  74. 6029e08 Issue 19944: Fix importlib.find_spec() so it imports parents as needed. by Eric Snow · 10 years ago
  75. e4314e0 Issue 19713: Remove PEP 451-related code that should have been factored out. by Eric Snow · 10 years ago
  76. 8d94229 Issue #19719: Update various finder and loader ABCs such that their by Brett Cannon · 10 years ago
  77. 1500d49 Issue 19713: Add PEP 451-related deprecations. by Eric Snow · 10 years ago
  78. 3192eac Remove dead PEP 451 code. by Eric Snow · 10 years ago
  79. d749c7a Issue #19927: Add __eq__ to path-based loaders in importlib. by Eric Snow · 10 years ago
  80. fbc7851 Issue #20097: Fix bad use of "self" in importlib's WindowsRegistryFinder. by Eric Snow · 10 years ago
  81. 61e851b Remove some dead code in importlib, introduced with the PEP 451 patch. by Eric Snow · 10 years ago
  82. b282b3d Issue #18864: Add a setter for ModuleSpec.has_location. by Eric Snow · 10 years ago
  83. c1e7c74 Issue 19851: Fix a regression in reloading submodules. by Eric Snow · 10 years ago
  84. d2476c6 Issue #19698: Remove exec_module() from the built-in and extension by Brett Cannon · 10 years ago
  85. 224b261 User the repr for a module name in more places by Brett Cannon · 11 years ago
  86. 175e725 Remove a commented-out line by Brett Cannon · 11 years ago
  87. fddc311 Don't assume trying to find a builtin will succeed (e.g. posix isn't on Windows) by Brett Cannon · 11 years ago
  88. b523f84 Implement PEP 451 (ModuleSpec). by Eric Snow · 11 years ago
  89. 2b8fc30 Abstract out stat calls in importlib for easier experimentation. by Brett Cannon · 11 years ago
  90. f6901c8 Issue #19410: Put back in special-casing of '' for by Brett Cannon · 11 years ago
  91. cdf6012 Issue #19413: Restore pre-3.3 reload() semantics of re-finding modules. by Eric Snow · 11 years ago
  92. 6b4f780 cleanup the construction of __qualname__ (closes #19301 again) by Benjamin Peterson · 11 years ago
  93. 3d9e481 give explicitly global functions and classes a global __qualname__ (closes #19301) by Benjamin Peterson · 11 years ago
  94. 58f5680 Issue #18810: Be optimistic with stat calls when seeing if a directory by Brett Cannon · 11 years ago
  95. bb9e481 Issue #18416: Fix various os calls in importlib.machinery.FileFinder by Brett Cannon · 11 years ago
  96. 27e27f7 Issue #18416: Have importlib.machinery.PathFinder treat '' as the cwd by Brett Cannon · 11 years ago
  97. 7e70fa5 [issue 19152] Ensure we have actually registered ExtensionFileLoader as an ExecutionLoader. by Eric Snow · 11 years ago
  98. 5179445 [issue19152] Add ExtensionFileLoader.get_filename(). by Eric Snow · 11 years ago
  99. e8bbfeb [issue19951] Fix docstring and use of _get_suppported_file_loaders() to reflect 2-tuples. by Eric Snow · 11 years ago
  100. 3c56145 Issue #16826: Revert fix while Windows issues are being worked out. by Meador Inge · 11 years ago