1. 082f177 Fix importlib.test.__main__ to only worry about command-line flags when directly executed. by Brett Cannon · 12 years ago
  2. f2e8675 Optimize importlib's case-sensitivity check by wasting as little time as possible under case-sensitive OSs. by Brett Cannon · 12 years ago
  3. 1f14beb Have importlib.test use argparse instead of some hacked up solution. by Brett Cannon · 12 years ago
  4. ba17fe2 Have importlib use os.replace() for atomic renaming. by Brett Cannon · 12 years ago
  5. f58d45c Tweak the handling of the empty string in sys.path for importlib. by Brett Cannon · 12 years ago
  6. 3b1a06c importlib.__import__() now raises ValueError when level < 0. by Brett Cannon · 12 years ago
  7. 7fab676 Refactor importlib.__import__() and _gcd_import() to facilitate using by Brett Cannon · 12 years ago
  8. 0568d6f Bring importlib in line w/ changes made in my personal bootstrap branch in the sandbox. by Brett Cannon · 12 years ago
  9. 353c107 simplify by Philip Jenvey · 12 years ago
  10. 4a2e1a0 Undo a bad mq management thingy. by Brett Cannon · 12 years ago
  11. 9777109 Whitespace normalization. by Brett Cannon · 12 years ago
  12. b4e63b3 Use the cwd when the empty string is found in sys.path. This leads to by Brett Cannon · 12 years ago
  13. 354c26e Move setup code from importlib.__init__ to importlib._bootstrap._setup(). by Brett Cannon · 12 years ago
  14. 8490fab Don't fail in the face of a lacking attribute when wrapping a function. by Brett Cannon · 12 years ago
  15. cae1068 Re-order importlib benchmarks to be consistent. Also print out what implementation of __import__ is used. by Brett Cannon · 12 years ago
  16. 466e6a9 Have importlib.test.benchmark test with tabnanny as a medium-sized test. by Brett Cannon · 12 years ago
  17. 5ea5b67 Fix a minor output typo as found by Terry Reedy. by Brett Cannon · 13 years ago
  18. e3a9ae5 Let importlib.test.benchmark take a specific benchmark name to run. by Brett Cannon · 13 years ago
  19. 190f33c Allow for the specification of a file to dump importlib benchmark by Brett Cannon · 13 years ago
  20. 8a89450 Issue #13890: Also fix for extension module tests for case-insensitivity. by Brett Cannon · 13 years ago
  21. 01ad325 Issue #13890: Fix importlib case-sensitivity tests to not run on Windows. by Brett Cannon · 13 years ago
  22. 51d14f8 Relocate importlib._case_ok to importlib._bootstrap. by Brett Cannon · 13 years ago
  23. c264e3e Move some code from importlib.__init__ to importlib._bootstrap that by Brett Cannon · 13 years ago
  24. 5816166 Port import fixes from 2.7. by Antoine Pitrou · 13 years ago
  25. 33d15f7 Port import fixes from 2.7. by Antoine Pitrou · 13 years ago
  26. 157c126 Port remaining test fixes, and fix test_importlib too. by Antoine Pitrou · 13 years ago
  27. dd21f68 Port remaining test fixes, and fix test_importlib too. by Antoine Pitrou · 13 years ago
  28. 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 · 13 years ago
  29. 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 · 13 years ago
  30. f522aea Issue #13588: Rename decorators in importlib. by Brett Cannon · 13 years ago
  31. 6f5b6d7 kill useless import added by 87331661042b by Benjamin Peterson · 13 years ago
  32. 7c9907e Fix no-op tests in importlib. by Antoine Pitrou · 13 years ago
  33. 5136ac0 Issue #13645: pyc files now contain the size of the corresponding source by Antoine Pitrou · 13 years ago
  34. 5e8767c Fix no-op tests in importlib. by Antoine Pitrou · 13 years ago
  35. 96ff084 Issue #13593: updating the importlib utility decorators for __qualname__. by Meador Inge · 13 years ago
  36. d7afeee Issue #13591: import_module potentially imports a module twice. by Meador Inge · 13 years ago
  37. 416f12d Issue #13591: import_module potentially imports a module twice. by Meador Inge · 13 years ago
  38. 6731775 Issue #13248: turn 3.2's PendingDeprecationWarning into 3.3's DeprecationWarning (cgi, importlib, nntplib, smtpd). by Florent Xicluna · 13 years ago
  39. 28e401e Issue #13392: Writing a pyc file should now be atomic under Windows as well. by Antoine Pitrou · 13 years ago
  40. 0c929d9 Issue #13303: Fix bytecode file default permission. by Charles-François Natali · 13 years ago
  41. e695eec Issue #13303: Fix a race condition in the bytecode file creation. by Charles-François Natali · 13 years ago
  42. 68f71a3 Simplify and remove few dependencies on 'errno', thanks to PEP 3151. by Florent Xicluna · 13 years ago
  43. daaaec9 Silence the FileExistsError which can be raised because of the O_EXCL flag by Antoine Pitrou · 13 years ago
  44. 707033a Issue #13146: Writing a pyc file is now atomic under POSIX. by Antoine Pitrou · 13 years ago
  45. 65897a3 Closes #12291 for 3.3 - merged fix from 3.2. by Vinay Sajip · 13 years ago
  46. 5bdae3b Closes #12291: Fixed bug which was found when doing multiple loads from one stream. by Vinay Sajip · 13 years ago
  47. ef3062f Kill dead code in importlib.test.__main__ (#12019, reviewed by Brett Cannon) by Éric Araujo · 13 years ago
  48. 82f4614 (Merge 3.2) Issue #11614: Fix importlib tests for the new __hello__ module by Victor Stinner · 13 years ago
  49. 45323a8 (Merge 3.1) Issue #11614: Fix importlib tests for the new __hello__ module by Victor Stinner · 13 years ago
  50. 272e243 Issue #11614: Fix importlib tests for the new __hello__ module by Victor Stinner · 13 years ago
  51. 5d43cff Remove a stale comment. by Brett Cannon · 13 years ago
  52. 442c9b9 Make importlib compatible with __import__ by "fixing" code.co_filename paths. by Brett Cannon · 13 years ago
  53. a7468bc Have importlib use the repr of a module name in error messages. by Brett Cannon · 13 years ago
  54. 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 13 years ago
  55. 42da663 #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  56. 3730892 #11515: Merge with 3.2. by Ezio Melotti · 13 years ago
  57. 91f0359 Skip test if zlib not present. Closes #11498. Patch by Natalia B. Bidart. by Eric V. Smith · 13 years ago
  58. 4169826 Typos. by Eric V. Smith · 13 years ago
  59. d958ea7 Issue 10899: Remove function type annotations from the stdlib by Raymond Hettinger · 14 years ago
  60. cd92f37 Issue 10899: Remove function type annotations from the stdlib by Raymond Hettinger · 14 years ago
  61. 19f2aeb Merged revisions 86596 via svnmerge from by Ezio Melotti · 14 years ago
  62. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  63. 0ffe6a9 Fix a minor inconsistency in capitalization for the 'No module named' exception by Brett Cannon · 14 years ago
  64. 764d612 Remove redundant context manager. by Florent Xicluna · 14 years ago
  65. a7ceeb3 OSError is the exception raised when one tries to create a directory that by Brett Cannon · 14 years ago
  66. 1d6569c Fix a bug where an attribute was lacking an object to work off of. by Brett Cannon · 14 years ago
  67. ee6d647 One of the joys of having test_multiprocessing occasionally execute after by Brett Cannon · 14 years ago
  68. 186335b Make sure that no __pycache__ directory is needlessly left behind when testing by Brett Cannon · 14 years ago
  69. 8d18907 While not strictly necessary thanks to the odd ABC inheritance done through by Brett Cannon · 14 years ago
  70. 5db0c94 Add importlib benchmarks which try to be "realistic" by importing the decimal by Brett Cannon · 14 years ago
  71. cbe1a4e Add comma grouping to max result so it's easier to read. by Brett Cannon · 14 years ago
  72. 3b0a19e Add benchmarks for importing just source w/o writing bytecode, importing source by Brett Cannon · 14 years ago
  73. 7b9bcb8 Touch up comments and code along with outputting what the unit of measure is. by Brett Cannon · 14 years ago
  74. 418182e Make importlib.abc.SourceLoader the primary mechanism for importlib. by Brett Cannon · 14 years ago
  75. d71bed3 Make importlib.abc.SourceLoader the primary mechanism for importlib. by Brett Cannon · 14 years ago
  76. 2cf1585 Fix a spelling mistake in a comment. by Brett Cannon · 14 years ago
  77. 61b1425 Make importlib.abc.SourceLoader the primary mechanism for importlib. by Brett Cannon · 14 years ago
  78. b7183d8 Add an inheritance test for importlib.abc.SourceLoader. by Brett Cannon · 14 years ago
  79. 0cf9e6a Move importlib.abc.SourceLoader to _bootstrap. by Brett Cannon · 14 years ago
  80. 2215c14 fix test with more obviously incorrect bytecode by Benjamin Peterson · 14 years ago
  81. f23e374 Implement importlib.abc.SourceLoader and deprecate PyLoader and PyPycLoader. by Brett Cannon · 14 years ago
  82. c56b094 Move over to assertIs. by Brett Cannon · 14 years ago
  83. 04b5684 Repair test failure. Bug 8727. by Barry Warsaw · 14 years ago
  84. 50ad588 Remove unnecessary XXX by Barry Warsaw · 14 years ago
  85. 28a691b PEP 3147 by Barry Warsaw · 14 years ago
  86. 39440b1 Merged revisions 78242 via svnmerge from by Brett Cannon · 14 years ago
  87. 9b3e15f Importlib was not matching import's handling of .pyc files where it had less by Brett Cannon · 14 years ago
  88. b89ee8e Clarify importlib.abc.PyPycLoader.write_bytecode(). by Brett Cannon · 15 years ago
  89. b4b929e no need to translate newlines in python code anymore by Benjamin Peterson · 15 years ago
  90. 3d26b95 Merged revisions 76146 via svnmerge from by Brett Cannon · 15 years ago
  91. e52c919 When trying to write new bytecode, importlib was not catching the IOError by Brett Cannon · 15 years ago
  92. 142d236 Merged revisions 76113-76114 via svnmerge from by Brett Cannon · 15 years ago
  93. cfed029 Use tempfile.mkdtemp() instead of tempfile.tempdir for where importlib places by Brett Cannon · 15 years ago
  94. 0ae4511 importlib.test.source.util referenced variables in the 'finally' part of a by Brett Cannon · 15 years ago
  95. 23cf574 Rework importlib benchmarks so that they measure number of executions within a by Brett Cannon · 15 years ago
  96. d95863f Clarify why test_import is failing under importlib. by Brett Cannon · 15 years ago
  97. 1c1dcbf Trying to import a submodule from another module and not a package was raising by Brett Cannon · 15 years ago
  98. 82a23fe test_pep3120 is no longer a problem for importlib as the test was tweaked. by Brett Cannon · 15 years ago
  99. de4ebfe When the globals argument to importlib.__import__() contained any value for by Brett Cannon · 15 years ago
  100. ce7d4cb Turn on verbose2 for importlib.test.regrtest so as to see failures when they occur. by Brett Cannon · 15 years ago