1. 4fe29c9 Issue #14605: Rename _SourcelessFileLoader to SourcelessFileLoader. by Marc-Andre Lemburg · 13 years ago
  2. ac8805a Issue #14605: Revert renaming of _SourcelessFileLoader, since it caused by Marc-Andre Lemburg · 13 years ago
  3. 2945e78 Issue #14605: Rename _SourcelessFileLoader to SourcelessFileLoader by Marc-Andre Lemburg · 13 years ago
  4. 938d44d Issue #14605: Expose importlib.abc.FileLoader and by Brett Cannon · 13 years ago
  5. 5c903e6 Issue #13959: Continue to try to accomodate altsep in importlib by not by Brett Cannon · 13 years ago
  6. cf64995 Revert to os.path.join() semantics for path manipulation in importlib by Brett Cannon · 13 years ago
  7. a846236 Continue the good fight to get Windows to like importlib by fixing a by Brett Cannon · 13 years ago
  8. 0d05a76 Have importlib look for pre-existing path separators when joining paths. by Brett Cannon · 13 years ago
  9. 2f92389 Don't worry about moving imp.get_tag() over to Lib/imp.py. by Brett Cannon · 13 years ago
  10. a64faf0 Issue #13959: Re-implement imp.source_from_cache() in Lib/imp.py. by Brett Cannon · 13 years ago
  11. ea59dbf Issue #13959: Re-implement imp.cache_from_source() in Lib/imp.py. by Brett Cannon · 13 years ago
  12. ed672d6 Make path manipulation more robust for platforms with alternative path by Brett Cannon · 13 years ago
  13. 24117a7 Issue #13959: Keep imp.get_magic() in C code, but cache in importlib by Brett Cannon · 13 years ago
  14. 1032af9 Issue #14585: test_import now runs all tests under by Brett Cannon · 13 years ago
  15. 8ff6baf Issue #14581: Windows users are allowed to import modules w/o taking by Brett Cannon · 13 years ago
  16. 91900ea Have importlib.test.regrtest clear sys.path_importer_cache to make by Brett Cannon · 13 years ago
  17. 2a481e5 don't bother keeping a set we'll never use by Benjamin Peterson · 13 years ago
  18. d76bc7a rollback 005fd1fe31ab (see #14609 and #14582) by Benjamin Peterson · 13 years ago
  19. 7bd329d Issue #12599: Be more strict in accepting None vs. a false-like object by Brett Cannon · 13 years ago
  20. 273323c Issue #14592: A relative import will raise a KeyError if __package__ by Brett Cannon · 13 years ago
  21. 6f44d66 Issue #13959: Rename imp to _imp and add Lib/imp.py and begin by Brett Cannon · 13 years ago
  22. 7788838 merge by Brett Cannon · 13 years ago
  23. 881535b Issue #14582: Import returns the module returned by a loader instead by Brett Cannon · 13 years ago
  24. f8f3190 utilize startswith(tuple) by Philip Jenvey · 13 years ago
  25. 49f8d8b Handle importing pkg.mod by executing by Brett Cannon · 13 years ago
  26. 44590e4 Add some comments. by Brett Cannon · 13 years ago
  27. fd07415 Issue #2377: Make importlib the implementation of __import__(). by Brett Cannon · 13 years ago
  28. bbb6680 Have importlib take advantage of ImportError's new 'name' and 'path' attributes. by Brett Cannon · 13 years ago
  29. d62cd56 Issue #14500: Fix importlib.test.import_.test_packages to clean up by Brett Cannon · 13 years ago
  30. 927d874 If a module injects something into sys.modules as a side-effect of by Brett Cannon · 13 years ago
  31. 0d4d410 Remove a dead docstring. by Brett Cannon · 13 years ago
  32. b46a179 Update importlib.invalidate_caches() to be more general. by Brett Cannon · 13 years ago
  33. 4b42ff6 unused imports, pep8 by Philip Jenvey · 13 years ago
  34. 625cd23 Simplify importib._resolve_name(). by Brett Cannon · 13 years ago
  35. 4b03b68 Turn _return_module() into _handle_fromlist(). by Brett Cannon · 13 years ago
  36. dfc3270 Make the benchmark recording more sensible for importlib.test.benchmark. by Brett Cannon · 13 years ago
  37. f500778 Improper type for __package__ should raise TypeError, not ValueError. by Brett Cannon · 13 years ago
  38. 068915c Do a type check instead of an interface check. by Brett Cannon · 13 years ago
  39. 34d8e41 Refactor importlib to make it easier to re-implement in C. by Brett Cannon · 13 years ago
  40. 6db1c40 Issue #14077: importlib: Fix regression introduced by de6703671386. by Charles-François Natali · 13 years ago
  41. b5c793a Issue #14063: fix test_importlib failure under OS X case-insensitive filesystems by Antoine Pitrou · 13 years ago
  42. 6ddac00 put docstrings on functions by Benjamin Peterson · 13 years ago
  43. b67075b _relax_case -> _make_relax_case by Antoine Pitrou · 13 years ago
  44. c541f8e Issue #14043: Speed up importlib's _FileFinder by at least 8x, and add a new importlib.invalidate_caches() function. by Antoine Pitrou · 13 years ago
  45. 336b2f4 Fix a failing importlib test under Windows. by Brett Cannon · 13 years ago
  46. 082f177 Fix importlib.test.__main__ to only worry about command-line flags when directly executed. by Brett Cannon · 13 years ago
  47. f2e8675 Optimize importlib's case-sensitivity check by wasting as little time as possible under case-sensitive OSs. by Brett Cannon · 13 years ago
  48. 1f14beb Have importlib.test use argparse instead of some hacked up solution. by Brett Cannon · 13 years ago
  49. ba17fe2 Have importlib use os.replace() for atomic renaming. by Brett Cannon · 13 years ago
  50. f58d45c Tweak the handling of the empty string in sys.path for importlib. by Brett Cannon · 13 years ago
  51. 3b1a06c importlib.__import__() now raises ValueError when level < 0. by Brett Cannon · 13 years ago
  52. 7fab676 Refactor importlib.__import__() and _gcd_import() to facilitate using by Brett Cannon · 13 years ago
  53. 0568d6f Bring importlib in line w/ changes made in my personal bootstrap branch in the sandbox. by Brett Cannon · 13 years ago
  54. 353c107 simplify by Philip Jenvey · 14 years ago
  55. 4a2e1a0 Undo a bad mq management thingy. by Brett Cannon · 14 years ago
  56. 9777109 Whitespace normalization. by Brett Cannon · 14 years ago
  57. b4e63b3 Use the cwd when the empty string is found in sys.path. This leads to by Brett Cannon · 14 years ago
  58. 354c26e Move setup code from importlib.__init__ to importlib._bootstrap._setup(). by Brett Cannon · 14 years ago
  59. 8490fab Don't fail in the face of a lacking attribute when wrapping a function. by Brett Cannon · 14 years ago
  60. cae1068 Re-order importlib benchmarks to be consistent. Also print out what implementation of __import__ is used. by Brett Cannon · 14 years ago
  61. 466e6a9 Have importlib.test.benchmark test with tabnanny as a medium-sized test. by Brett Cannon · 14 years ago
  62. 5ea5b67 Fix a minor output typo as found by Terry Reedy. by Brett Cannon · 14 years ago
  63. e3a9ae5 Let importlib.test.benchmark take a specific benchmark name to run. by Brett Cannon · 14 years ago
  64. 190f33c Allow for the specification of a file to dump importlib benchmark by Brett Cannon · 14 years ago
  65. 8a89450 Issue #13890: Also fix for extension module tests for case-insensitivity. by Brett Cannon · 14 years ago
  66. 01ad325 Issue #13890: Fix importlib case-sensitivity tests to not run on Windows. by Brett Cannon · 14 years ago
  67. 51d14f8 Relocate importlib._case_ok to importlib._bootstrap. by Brett Cannon · 14 years ago
  68. c264e3e Move some code from importlib.__init__ to importlib._bootstrap that by Brett Cannon · 14 years ago
  69. 5816166 Port import fixes from 2.7. by Antoine Pitrou · 14 years ago
  70. 33d15f7 Port import fixes from 2.7. by Antoine Pitrou · 14 years ago
  71. 157c126 Port remaining test fixes, and fix test_importlib too. by Antoine Pitrou · 14 years ago
  72. dd21f68 Port remaining test fixes, and fix test_importlib too. by Antoine Pitrou · 14 years ago
  73. abaf89b Issue #11235: Fix OverflowError when trying to import a source file whose modification time doesn't fit in a 32-bit timestamp. by Antoine Pitrou · 14 years ago
  74. 2be60af Issue #11235: Fix OverflowError when trying to import a source file whose modification time doesn't fit in a 32-bit timestamp. by Antoine Pitrou · 14 years ago
  75. f522aea Issue #13588: Rename decorators in importlib. by Brett Cannon · 14 years ago
  76. 6f5b6d7 kill useless import added by 87331661042b by Benjamin Peterson · 14 years ago
  77. 7c9907e Fix no-op tests in importlib. by Antoine Pitrou · 14 years ago
  78. 5136ac0 Issue #13645: pyc files now contain the size of the corresponding source by Antoine Pitrou · 14 years ago
  79. 5e8767c Fix no-op tests in importlib. by Antoine Pitrou · 14 years ago
  80. 96ff084 Issue #13593: updating the importlib utility decorators for __qualname__. by Meador Inge · 14 years ago
  81. d7afeee Issue #13591: import_module potentially imports a module twice. by Meador Inge · 14 years ago
  82. 416f12d Issue #13591: import_module potentially imports a module twice. by Meador Inge · 14 years ago
  83. 6731775 Issue #13248: turn 3.2's PendingDeprecationWarning into 3.3's DeprecationWarning (cgi, importlib, nntplib, smtpd). by Florent Xicluna · 14 years ago
  84. 28e401e Issue #13392: Writing a pyc file should now be atomic under Windows as well. by Antoine Pitrou · 14 years ago
  85. 0c929d9 Issue #13303: Fix bytecode file default permission. by Charles-François Natali · 14 years ago
  86. e695eec Issue #13303: Fix a race condition in the bytecode file creation. by Charles-François Natali · 14 years ago
  87. 68f71a3 Simplify and remove few dependencies on 'errno', thanks to PEP 3151. by Florent Xicluna · 14 years ago
  88. daaaec9 Silence the FileExistsError which can be raised because of the O_EXCL flag by Antoine Pitrou · 14 years ago
  89. 707033a Issue #13146: Writing a pyc file is now atomic under POSIX. by Antoine Pitrou · 14 years ago
  90. 65897a3 Closes #12291 for 3.3 - merged fix from 3.2. by Vinay Sajip · 14 years ago
  91. 5bdae3b Closes #12291: Fixed bug which was found when doing multiple loads from one stream. by Vinay Sajip · 14 years ago
  92. ef3062f Kill dead code in importlib.test.__main__ (#12019, reviewed by Brett Cannon) by Éric Araujo · 14 years ago
  93. 82f4614 (Merge 3.2) Issue #11614: Fix importlib tests for the new __hello__ module by Victor Stinner · 14 years ago
  94. 45323a8 (Merge 3.1) Issue #11614: Fix importlib tests for the new __hello__ module by Victor Stinner · 14 years ago
  95. 272e243 Issue #11614: Fix importlib tests for the new __hello__ module by Victor Stinner · 14 years ago
  96. 5d43cff Remove a stale comment. by Brett Cannon · 14 years ago
  97. 442c9b9 Make importlib compatible with __import__ by "fixing" code.co_filename paths. by Brett Cannon · 14 years ago
  98. a7468bc Have importlib use the repr of a module name in error messages. by Brett Cannon · 14 years ago
  99. 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 14 years ago
  100. 42da663 #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 years ago