1. b0274f2 closes bpo-34056: Always return bytes from _HackedGetData.get_data(). (GH-8130) by Benjamin Peterson · 6 years ago
  2. c38e32a bpo-30645: don't append to an inner loop path in imp.load_package() (GH-2268) by Alexandru Ardelean · 7 years ago
  3. 896e87a Merge for #26844 by Brett Cannon · 8 years ago
  4. f76457e Issue #26844: Fix imp.find_module() to have the exception related to by Brett Cannon · 8 years ago
  5. c0d91af Upgrade the imp module's deprecation to DeprecationWarning. by Brett Cannon · 9 years ago
  6. 9d3c61c Close #24748: Restore imp.load_dynamic compatibility by Nick Coghlan · 9 years ago
  7. d5cacbb PEP 489: Multi-phase extension module initialization by Nick Coghlan · 9 years ago
  8. 32439d6 Issue #23911: Move path-based bootstrap code to a separate frozen module. by Eric Snow · 9 years ago
  9. cadbab2 Closes #23956: Merge with 3.4 by Zachary Ware · 9 years ago
  10. 50db6ac Issue #23956: Fix typo in imp.py docstring. by Zachary Ware · 9 years ago
  11. f299abd Issue #23731: Implement PEP 488. by Brett Cannon · 9 years ago
  12. 781692f Fix module deprecation warnings to have a useful stacklevel by Brett Cannon · 9 years ago
  13. 2a17bde Issue #20383: Introduce importlib.util.module_from_spec(). by Brett Cannon · 10 years ago
  14. 6787a38 Issue #15204: Deprecated the 'U' mode in file-like objects. by Serhiy Storchaka · 11 years ago
  15. b523f84 Implement PEP 451 (ModuleSpec). by Eric Snow · 11 years ago
  16. 16ababc merge for issue #18755 by Brett Cannon · 11 years ago
  17. a4975a9 Issue #18755: Allow imp.load_*() loaders to have get_data() called by Brett Cannon · 11 years ago
  18. 7491f17 issue #18698: ensure importlib.reload() returns the module out of sys.modules. by Eric Snow · 11 years ago
  19. 056bafe #18681: Fix a NameError in imp.reload() (noticed by Weizhao Li). by Ezio Melotti · 11 years ago
  20. cd171c8 Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) by Brett Cannon · 11 years ago
  21. e4f41de Issue #17177: The imp module is pending deprecation. by Brett Cannon · 11 years ago
  22. a38e814 Issue #18194: Introduce importlib.util.cache_from_source() and by Brett Cannon · 11 years ago
  23. 589c4ff Make it more obvious what things used in imp are snuck in through private APIs by Brett Cannon · 11 years ago
  24. a3c9615 Issue #17907: touch up the code for imp.new_module(). by Brett Cannon · 11 years ago
  25. 05a647d Issue #18192: Introduce importlib.util.MAGIC_NUMBER and document the by Brett Cannon · 11 years ago
  26. 3fe35e6 Issue #18193: Add importlib.reload(), documenting (but not by Brett Cannon · 11 years ago
  27. 0a14066 Issue #18200: Update the stdlib (except tests) to use ModuleNotFoundError. by Brett Cannon · 11 years ago
  28. 9d0f772 Issue #15902: Fix imp.load_module() to accept None as a file when by Brett Cannon · 11 years ago
  29. 5a4c233 Issue #17358: imp.load_source() and load_compiled() should now return by Brett Cannon · 11 years ago
  30. 3e2fe05 Issue #16880: _imp.load_dynamic() is not defined on a platform that by Brett Cannon · 11 years ago
  31. 91b9f13 Issue #15828: Restore support for C extension modules in imp.load_module() by Nick Coghlan · 12 years ago
  32. ac9f2f3 Issue #15576: Allow extension modules to be a package's __init__ by Brett Cannon · 12 years ago
  33. a6473f9 Issues #15169, #14599: Make PyImport_ExecCodeModuleWithPathnames() use by Brett Cannon · 12 years ago
  34. 77b2abd Issue #15167 (as part of #13959): imp.get_magic() is no implemented in by Brett Cannon · 12 years ago
  35. 19a2f59 Issue #15056: imp.cache_from_source() and source_from_cache() raise by Brett Cannon · 12 years ago
  36. bf7eab0 Issue #15256: Re-use the ImportError exception message as defined by by Brett Cannon · 12 years ago
  37. 98979b8 Issue #15166: Re-implement imp.get_tag() using sys.implementation. by Brett Cannon · 12 years ago
  38. 0450c9e Issue #13959: Add to imp.find_module() and load_module's docstrings by Brett Cannon · 12 years ago
  39. c049952 Issue #13959: Have by Brett Cannon · 12 years ago
  40. cb66eb0 Issue #13959: Deprecate imp.get_suffixes() for new attributes on by Brett Cannon · 12 years ago
  41. ef5a463 don't append the bytecode suffix to the source suffixes global by Benjamin Peterson · 12 years ago
  42. 2657df4 Issue #13959: Re-implement imp.get_suffixes() in Lib/imp.py. by Brett Cannon · 12 years ago
  43. 17098a5 Properly mark names in importlib._bootstrap as private. by Brett Cannon · 12 years ago
  44. 1182351 Re-indent. by Brett Cannon · 12 years ago
  45. 62228db Issues #13959, 14647: Re-implement imp.reload() in Lib/imp.py. by Brett Cannon · 12 years ago
  46. acf85cd Issue #13959: Re-implement imp.NullImporter in Lib/imp.py. by Brett Cannon · 12 years ago
  47. 4fe29c9 Issue #14605: Rename _SourcelessFileLoader to SourcelessFileLoader. by Marc-Andre Lemburg · 12 years ago
  48. ac8805a Issue #14605: Revert renaming of _SourcelessFileLoader, since it caused by Marc-Andre Lemburg · 12 years ago
  49. 2945e78 Issue #14605: Rename _SourcelessFileLoader to SourcelessFileLoader by Marc-Andre Lemburg · 12 years ago
  50. 938d44d Issue #14605: Expose importlib.abc.FileLoader and by Brett Cannon · 12 years ago
  51. cb165db Fix whitespace. by Brett Cannon · 12 years ago
  52. e69f0df Issue #13959: Re-implement imp.find_module() in Lib/imp.py. by Brett Cannon · 12 years ago
  53. 2f92389 Don't worry about moving imp.get_tag() over to Lib/imp.py. by Brett Cannon · 12 years ago
  54. a64faf0 Issue #13959: Re-implement imp.source_from_cache() in Lib/imp.py. by Brett Cannon · 12 years ago
  55. ea59dbf Issue #13959: Re-implement imp.cache_from_source() in Lib/imp.py. by Brett Cannon · 12 years ago
  56. 24117a7 Issue #13959: Keep imp.get_magic() in C code, but cache in importlib by Brett Cannon · 12 years ago
  57. 64befe9 Issue #13959: Re-implement imp.load_compiled() in imp.py. by Brett Cannon · 12 years ago
  58. 578393b Properly guard against special-casing. by Brett Cannon · 12 years ago
  59. 16475ad Issue #13959: Re-implement imp.load_source() in imp.py. by Brett Cannon · 12 years ago
  60. de10bf4 Issue #13959: Fix a logic bug. by Brett Cannon · 12 years ago
  61. 2ee6142 Issue #13959: Re-implement imp.load_package() in imp.py. by Brett Cannon · 12 years ago
  62. 01a7617 Issue #13959: Re-implement imp.load_module() in imp.py. by Brett Cannon · 12 years ago
  63. 2fef4d2 Consider load_dynamic() something to keep in _imp. by Brett Cannon · 12 years ago
  64. 6f44d66 Issue #13959: Rename imp to _imp and add Lib/imp.py and begin by Brett Cannon · 12 years ago