1. f5fe130 Update importlib.h by Brett Cannon · 12 years ago
  2. a3687f0 Introduce importlib.util.ModuleManager which is a context manager to by Brett Cannon · 12 years ago
  3. e8e1459 rather than passing locals to the class body, just execute the class body in the proper environment by Benjamin Peterson · 12 years ago
  4. 312595c hide the __class__ closure from the class body (#12370) by Benjamin Peterson · 12 years ago
  5. 4c14b5d #17115,17116: Have modules initialize the __package__ and __loader__ by Brett Cannon · 12 years ago
  6. 3b0431d check local class namespace before reaching for cells (closes #17853) by Benjamin Peterson · 12 years ago
  7. edfd6ae Issue #17244: Don't mask exceptions raised during the creation of by Brett Cannon · 12 years ago
  8. 100883f Issue #17093,17566,17567: Methods from classes in importlib.abc now raise/return by Brett Cannon · 12 years ago
  9. daf4daa merge by Brett Cannon · 12 years ago
  10. f8ffec0 Issue #17357: Add missing verbosity messages when running under by Brett Cannon · 12 years ago
  11. d0924b3 update importlib.h by Benjamin Peterson · 12 years ago
  12. 440282b copy 2.7 magic numbers for historical interest by Benjamin Peterson · 12 years ago
  13. 7701e6e make some freezing related stuff const by Benjamin Peterson · 12 years ago
  14. 4802bec Issue #17117: Have both import itself and importlib.util.set_loader() by Brett Cannon · 12 years ago
  15. c190389 Issue #17220: two fixes for changeset 2528e4aea338. by Brett Cannon · 12 years ago
  16. 39e47f9 Issue #17220: Little cleanup of _bootstrap.py. by Serhiy Storchaka · 12 years ago
  17. 92bd4ef Merge importlib.h rebuild from 3.3 after the changes introduced in 65eaac000147. by Ezio Melotti · 12 years ago
  18. 795c10b Rebuild importlib.h after the changes introduced in 0f65bf6063ca. by Ezio Melotti · 12 years ago
  19. 419d9a8 evaluate lambda keyword-only defaults after positional defaults (#16967 again) by Benjamin Peterson · 12 years ago
  20. 1ef876c evaluate positional defaults before keyword-only defaults (closes #16967) by Benjamin Peterson · 12 years ago
  21. 85ae356 Merge w/ 3.3 more fixes thanks to issue #17098 by Brett Cannon · 13 years ago
  22. da9cf0e Issue #17098: Be more stringent of setting __loader__ on early imported by Brett Cannon · 13 years ago
  23. 0ecd30b Issue #17098: Make sure every module has __loader__ defined. by Brett Cannon · 13 years ago
  24. f3220d6 Tweak an exception message by Brett Cannon · 13 years ago
  25. 14581d5 Port py_compile over to importlib by Brett Cannon · 13 years ago
  26. 686e880 Touch up exception messaging by Brett Cannon · 13 years ago
  27. 569ff4f Issue #15031: Refactor some code in importlib pertaining to validating by Brett Cannon · 13 years ago
  28. c57f9f9 Merge from 3.3 for fix for issue #16730 by Brett Cannon · 13 years ago
  29. a9976b3 Issue #16730: Don't raise an exception in by Brett Cannon · 13 years ago
  30. f7a17b4 Replace IOError with OSError (#16715) by Andrew Svetlov · 13 years ago
  31. fc8f5c5 update importlib.h by Benjamin Peterson · 13 years ago
  32. ad28c7f Issue #16706: get rid of os.error by Andrew Svetlov · 13 years ago
  33. a6cfb28 Issue #15627: This is simply an update to the name of a new method recently added by Eric Snow · 13 years ago
  34. b72c109 - Issue #16514: Fix regression causing a traceback when sys.path[0] is None by Barry Warsaw · 13 years ago
  35. 82c1c78 - Issue #16514: Fix regression causing a traceback when sys.path[0] is None by Barry Warsaw · 13 years ago
  36. 540187f Regen importlib.h by Brett Cannon · 13 years ago
  37. 5650e4f Issue #15627: Add the compile_source() method to importlib.abc.SourceLoader. by Brett Cannon · 13 years ago
  38. c7a8a21 merge 3.3 (sort of) by Benjamin Peterson · 13 years ago
  39. 2a0e226 recompile importlib.h by Benjamin Peterson · 13 years ago
  40. d4f5ad6 Merge fix from #6074 from 3.3 by Nick Coghlan · 13 years ago
  41. eb8d627 Issue #6074: Apply an appropriate fix for importlib based imports by Nick Coghlan · 13 years ago
  42. 744fadd Merge issue #15833: don't raise an exception if importlib can't write by Trent Nelson · 13 years ago
  43. d783c8e Issue #15833: don't raise an exception if importlib can't write byte-compiled by Trent Nelson · 13 years ago
  44. 6072e0b Remove uses of % with str.format. by Brett Cannon · 13 years ago
  45. 9407d50 Merge fix for issue #15111. by Brett Cannon · 13 years ago
  46. a6ce4fd Closes issue #15111: Calling __import__ with a module specified in by Brett Cannon · 13 years ago
  47. f01d695 Closes #16135: Removal of OS/2 support by Jesus Cea · 13 years ago
  48. 8ed677d Add some comments. by Brett Cannon · 13 years ago
  49. feaa54f don't depend on __debug__ because it's baked in at freeze time (issue #16046) by Benjamin Peterson · 13 years ago
  50. 4f0338c Issue #15781: Fix two small race conditions in import's module locking. by Antoine Pitrou · 13 years ago
  51. 12c6bda Issue #15316: Let exceptions raised during imports triggered by the by Brett Cannon · 13 years ago
  52. ba0a3ed Issue #2051: Tweak last commit for this issue to pass in mode instead by Brett Cannon · 13 years ago
  53. 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 · 13 years ago
  54. 48fec05 Close #14846: Handle a sys.path entry going away by Nick Coghlan · 13 years ago
  55. 7385adc Issue #15715: Ignore failed imports triggered by the use of fromlist. by Brett Cannon · 13 years ago
  56. b428f47 Don't overwrite a __path__ value from extension modules if already set. by Brett Cannon · 13 years ago
  57. 688a551 fix docstring wording by Philip Jenvey · 13 years ago
  58. f410ce8 Issue #15502: Refactor some code. by Brett Cannon · 13 years ago
  59. 731d48a update docstring per the extension package fix, refactor by Philip Jenvey · 13 years ago
  60. ac9f2f3 Issue #15576: Allow extension modules to be a package's __init__ by Brett Cannon · 13 years ago
  61. f4dc920 Issue #15502: Finish bringing importlib.abc in line with the current by Brett Cannon · 13 years ago
  62. cb4996a Issue #15471: Don't use mutable object as default values for the by Brett Cannon · 13 years ago
  63. 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 · 13 years ago
  64. 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 · 13 years ago
  65. 42c0766 Close #15486: Simplify the mechanism used to remove importlib frames from tracebacks when they just introduce irrelevant noise by Nick Coghlan · 13 years ago
  66. 5ee9892 Close #15425: Eliminate more importlib related traceback noise by Nick Coghlan · 13 years ago
  67. e3010a8 Issue #14578: Support modules registered in the Windows registry again. by Martin v. Löwis · 13 years ago
  68. 7e39572 Issue #15466: Stop using TYPE_INT64 in marshal, by Martin v. Löwis · 13 years ago
  69. 2824cb5 Issue #15343: A lot more than just unicode decoding can go wrong when retrieving a source file by Nick Coghlan · 13 years ago
  70. a6473f9 Issues #15169, #14599: Make PyImport_ExecCodeModuleWithPathnames() use by Brett Cannon · 13 years ago
  71. 461c813 Issue #15111: When a module was imported using a 'from import' by Brett Cannon · 13 years ago
  72. 77b2abd Issue #15167 (as part of #13959): imp.get_magic() is no implemented in by Brett Cannon · 13 years ago
  73. 19a2f59 Issue #15056: imp.cache_from_source() and source_from_cache() raise by Brett Cannon · 13 years ago
  74. ae7b8f0 Issue #15110: Also hide importlib frames when importing a builtin module fails. by Amaury Forgeot d'Arc · 13 years ago
  75. bc07a5c Issue #15110: Fix the tracebacks generated by "import xxx" to not show the importlib stack frames. by Antoine Pitrou · 13 years ago
  76. bc1a7dd Check-in compiled importlib changes (you must run "make" after modifying the importlib sources). by Antoine Pitrou · 13 years ago
  77. 98979b8 Issue #15166: Re-implement imp.get_tag() using sys.implementation. by Brett Cannon · 13 years ago
  78. 0ab5cf9 Issue #15181: importlib bytecode is unsigned and shouldn't have negative numbers. by Antoine Pitrou · 13 years ago
  79. e51a369 Fixes issue 15039: namespace packages are no longer imported in preference to modules of the same name. by Eric V. Smith · 13 years ago
  80. 310f95b A better repr() for FileFinder by Antoine Pitrou · 13 years ago
  81. e67f48c Issue #14928: Fix importlib bootstrap issues by using a custom executable (Modules/_freeze_importlib) to build Python/importlib.h. by Antoine Pitrou · 13 years ago
  82. 1d25b6f Issue #15103: remove the NUL character (serving as a Mercurial binary marker) from Python/importlib.h. by Antoine Pitrou · 13 years ago
  83. 2d9db1d Try to fix issue #15086: build failure on Ubuntu shared buildbot. by Antoine Pitrou · 13 years ago
  84. 99d776f Update importlib.h by touching Lib/importlib/_bootstrap.py. by Brett Cannon · 13 years ago
  85. 5c6eba3 Tweak importlib._bootstrap to avoid zero-argument super so I can work on issue #14857 without breaking imports by Nick Coghlan · 13 years ago
  86. d785cb3 Remove some redundant decorators. by Brett Cannon · 13 years ago
  87. 984b11f issue 14660: Implement PEP 420, namespace packages. by Eric V. Smith · 13 years ago
  88. ea3eb88 Issue #9260: A finer-grained import lock. by Antoine Pitrou · 13 years ago
  89. b84bc7a Avoid "warning: no newline at end of file" in importlib.h. by Antoine Pitrou · 13 years ago
  90. 6ecf8ce apparently importlib.h wants to be updated by Benjamin Peterson · 13 years ago
  91. c049952 Issue #13959: Have by Brett Cannon · 13 years ago
  92. 44ec91f Update importlib.h by Brett Cannon · 13 years ago
  93. 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 · 13 years ago
  94. feccc09 Clean up a docstring. by Brett Cannon · 13 years ago
  95. a6685e8 update importlib.h by Brett Cannon · 13 years ago
  96. 2657df4 Issue #13959: Re-implement imp.get_suffixes() in Lib/imp.py. by Brett Cannon · 13 years ago
  97. efad00d Issue #14646: __import__() now sets __loader__ if need be. by Brett Cannon · 13 years ago
  98. fea73ef Issue #14605: Don't error out if get_importer() returns None. by Brett Cannon · 13 years ago
  99. aa93642 Issue #14605: Use None in sys.path_importer_cache to represent no by Brett Cannon · 13 years ago
  100. ce418b4 Issue #14605: Stop having implicit entries for sys.meta_path. by Brett Cannon · 13 years ago