1. 10dc0eb Issue #18202: Fix minor bugs and cleanup test_source_encoding.py. by Serhiy Storchaka · 11 years ago
  2. 0a3cdf0 Issue #18202: Fix minor bugs and cleanup test_coding.py. by Serhiy Storchaka · 11 years ago
  3. 9674bd0 Issue #17222: fix a mix-up in some exception messages. by Brett Cannon · 11 years ago
  4. e08d488 (Merge 3.3) test_faulthandler: use _sigsegv() instead of _read_null() by Victor Stinner · 11 years ago
  5. 5678539 test_faulthandler: use _sigsegv() instead of _read_null() by Victor Stinner · 11 years ago
  6. 3f41c64 (Merge 3.3) Issue #18238: Skip test_signal.test_sigwaitinfo_interrupted() on AIX by Victor Stinner · 11 years ago
  7. 91f9bdd Issue #18238: Skip test_signal.test_sigwaitinfo_interrupted() on AIX by Victor Stinner · 11 years ago
  8. 546ccf0 Issue #18228: Use locale.setlocale(name, None) instead of by Victor Stinner · 11 years ago
  9. d9ccf7f Issue #18228: Fix locale test of test.regrtest.saved_test_environment by Victor Stinner · 11 years ago
  10. a222de1 (Merge 3.3) regrtest.py: Fix another typo in the usage of the faulthandler module by Victor Stinner · 11 years ago
  11. 934676a regrtest.py: Fix another typo in the usage of the faulthandler module by Victor Stinner · 11 years ago
  12. 4a704d2 (Merge 3.3) regrtest.py: Fix typo in the usage of the faulthandler module by Victor Stinner · 11 years ago
  13. 4de701b regrtest.py: Fix typo in the usage of the faulthandler module by Victor Stinner · 11 years ago
  14. 9ce4f36 merge heads by Christian Heimes · 11 years ago
  15. 9a5395a Issue #18147: Add diagnostic functions to ssl.SSLContext(). by Christian Heimes · 11 years ago
  16. a5f004f Merge heads by Serhiy Storchaka · 11 years ago
  17. 774bed7 Issue #18167: cgi.FieldStorage no more fails to handle multipart/form-data by Serhiy Storchaka · 11 years ago
  18. c7bfe0e Issue #18167: cgi.FieldStorage no more fails to handle multipart/form-data by Serhiy Storchaka · 11 years ago
  19. 9424bb4 Issue #18207: Fix test_ssl for some versions of OpenSSL that ignore seconds by Christian Heimes · 11 years ago
  20. 78be6e8 Issue #18223: Refactor test_tarfile. by Serhiy Storchaka · 11 years ago
  21. 8b56292 Issue #18223: Refactor test_tarfile. by Serhiy Storchaka · 11 years ago
  22. 390f6c1 Merge doc/argument name fix by Brett Cannon · 11 years ago
  23. a269d82 merge by Brett Cannon · 11 years ago
  24. 1d75382 Fix a misnaming of a method and an argument by Brett Cannon · 11 years ago
  25. f24fecd Issue #18076: Introduce imoportlib.util.decode_source(). by Brett Cannon · 11 years ago
  26. f4375ef importlib.abc.SourceLoader.get_source() was re-raising SyntaxError and by Brett Cannon · 11 years ago
  27. 01b0475 Issue #18115: Abstract out managing the cleanup of modules to use in by Brett Cannon · 11 years ago
  28. 6d26eba Check that warnings.showwarning() is not changed. by Brett Cannon · 11 years ago
  29. 13d8ff9 Issues #18058, 18057: Make importlib._bootstrap.NamespaceLoader by Brett Cannon · 11 years ago
  30. 645ab68 merge by Brett Cannon · 11 years ago
  31. e4f41de Issue #17177: The imp module is pending deprecation. by Brett Cannon · 11 years ago
  32. f567727 Merge with 3.3 by Andrew Kuchling · 11 years ago
  33. c7b6c50 Describe 'surrogateescape' in the documentation. by Andrew Kuchling · 11 years ago
  34. 39295e7 Stop using the deprecated unittest.TestCase.assertRaisesRegexp() by Brett Cannon · 11 years ago
  35. 2f9f056 Make test_builtin work when executed directly by Brett Cannon · 11 years ago
  36. 22ba31a Prevent a possible double close of parent pipe fds when the subprocess by Gregory P. Smith · 11 years ago
  37. b5461b9 Prevent a possible double close of parent pipe fds when the subprocess by Gregory P. Smith · 11 years ago
  38. ef88802 Issue #17177: stop using imp in test_importlib by Brett Cannon · 11 years ago
  39. e7e1dee Issue # 17177: Stop using imp in turtledemo by Brett Cannon · 11 years ago
  40. b57a085 Issue #17177: Stop using imp in zipfile by Brett Cannon · 11 years ago
  41. 9529fbf Issue #17177: Stop using imp in a bunch of tests by Brett Cannon · 11 years ago
  42. 8a2a902 Merge with 3.3 by Andrew Kuchling · 11 years ago
  43. f15a59f Issue #17177: Stop using imp in sysconfig by Brett Cannon · 11 years ago
  44. 82d2107 Issue #17177: switch from imp.new_module to types.ModuleType for runpy by Brett Cannon · 11 years ago
  45. f4ba4ec Issue #17177: Stop using imp in pydoc by Brett Cannon · 11 years ago
  46. df96068 Issue #17177: Stop using imp with py_compile by Brett Cannon · 11 years ago
  47. 53e5ea7 #18113: Objects associated to a curses.panel object with set_userptr() were leaked. by Andrew Kuchling · 11 years ago
  48. cc39b1e merge w/ 3.3 by Brett Cannon · 11 years ago
  49. 27bbfdb Drop some dead imports of imp by Brett Cannon · 11 years ago
  50. 4f4088e Issue #17177: Stop using imp in multiprocessing by Brett Cannon · 11 years ago
  51. 61c3556 Issue #17177: Stop using imp in distutils by Brett Cannon · 11 years ago
  52. 7822e12 Issue #17177: stop using imp for compileall. by Brett Cannon · 11 years ago
  53. 0b16b0d make test more robust under Windows by Brett Cannon · 11 years ago
  54. a38e814 Issue #18194: Introduce importlib.util.cache_from_source() and by Brett Cannon · 11 years ago
  55. 589c4ff Make it more obvious what things used in imp are snuck in through private APIs by Brett Cannon · 11 years ago
  56. a3c9615 Issue #17907: touch up the code for imp.new_module(). by Brett Cannon · 11 years ago
  57. 6b3d64a Closes issue 17947. Adds PEP-0435 (Adding an Enum type to the Python standard library). by Ethan Furman · 11 years ago
  58. 05a647d Issue #18192: Introduce importlib.util.MAGIC_NUMBER and document the by Brett Cannon · 11 years ago
  59. 8c18da2 merge by Brett Cannon · 11 years ago
  60. 33915eb Issue #17222: Raise FileExistsError when py_compile.compile would by Brett Cannon · 11 years ago
  61. 7bff3cb Issue #18149: Add filecmp.clear_cache() to manually clear the filecmp cache. by Ned Deily · 11 years ago
  62. 3fe35e6 Issue #18193: Add importlib.reload(), documenting (but not by Brett Cannon · 11 years ago
  63. 6f10576 Remove a dead import line. by Brett Cannon · 11 years ago
  64. 58f2efb Move test_pep352 over to unittest.main() by Brett Cannon · 11 years ago
  65. 0a14066 Issue #18200: Update the stdlib (except tests) to use ModuleNotFoundError. by Brett Cannon · 11 years ago
  66. 9702a17 Issue #18048: Merge test_pep263.py and test_coding.py into test_source_encoding.py. by Serhiy Storchaka · 11 years ago
  67. 07c805d Issue #18048: Rename test_coding.py to test_source_encoding.py. by Serhiy Storchaka · 11 years ago
  68. 29f2d73 Issue #18048: Rename test_pep263.py to test_source_encoding.py. by Serhiy Storchaka · 11 years ago
  69. e5b25df Issue #15767: Add an explicit test for raising ModuleNotFoundError by Brett Cannon · 11 years ago
  70. 8f5ac51 Issue #15767: Touch up ModuleNotFoundError usage by import. by Brett Cannon · 11 years ago
  71. 3e9a9ae Update various test modules to use unittest.main() for test discovery by Brett Cannon · 11 years ago
  72. e382b58 Partially revert changeset #281857369a78 to make sure threads are by Brett Cannon · 11 years ago
  73. c9a1bfe Move test___all__ over to unittest.main() and use ModuleNotFoundError by Brett Cannon · 11 years ago
  74. 603dcf2 Spruce up test_xmlrpc by using ModuleNotFoundError and moving to by Brett Cannon · 11 years ago
  75. d5b4e1d Move test_zipfile to unittest.main() by Brett Cannon · 11 years ago
  76. b1611e2 Issue #15767: Introduce ModuleNotFoundError, a subclass of ImportError. by Brett Cannon · 11 years ago
  77. 638ce07 Move code from test_importhooks into test_zipimport. by Brett Cannon · 11 years ago
  78. f15ffe0 Add tests for issue #18183. by Serhiy Storchaka · 11 years ago
  79. 31b1c8b Add tests for issue #18183. by Serhiy Storchaka · 11 years ago
  80. 6d844c5 #18196: merge with 3.3 by Roger Serwy · 11 years ago
  81. f467521 #18196: Avoid displaying spurious SystemExit tracebacks. by Roger Serwy · 11 years ago
  82. c2efeb6 #5492: merge with 3.3 by Roger Serwy · 11 years ago
  83. 036e849 #5492: Avoid traceback when exiting IDLE caused by a race condition. by Roger Serwy · 11 years ago
  84. 12d400d explanatory comment by Brett Cannon · 11 years ago
  85. 865b292 typo fix by Brett Cannon · 11 years ago
  86. 68133fd Issue #18158: delete test_importhooks. Redundant in the face of test_importlib. by Brett Cannon · 11 years ago
  87. d5e6f2e Issue #18157: stop using imp.load_module() in imp. by Brett Cannon · 11 years ago
  88. 30b4131 #17511: merge with 3.3. by Roger Serwy · 11 years ago
  89. 391f469 #17511: Keep IDLE find dialog open after clicking "Find Next". by Roger Serwy · 11 years ago
  90. 3164f5d merge 3.3 (#18183) by Benjamin Peterson · 11 years ago
  91. 7e30373 remove MAX_MAXCHAR because it's unsafe for computing maximum codepoitn value (see #18183) by Benjamin Peterson · 11 years ago
  92. a35a128 Merge. by Richard Oudkerk · 11 years ago
  93. 0e547b6 Issue #18174: Fix fd leaks in tests. by Richard Oudkerk · 11 years ago
  94. 36451f0 (3.3->default) Ensure that the fix for #17269 also works on OSX 10.4 by Ronald Oussoren · 11 years ago
  95. a822d366 Ensure that the fix for #17269 also works on OSX 10.4 by Ronald Oussoren · 11 years ago
  96. 531381f Issue #16102: Make uuid._netbios_getnode() work again on Python 3. by Serhiy Storchaka · 11 years ago
  97. 6f50b81 Issue #16102: Make uuid._netbios_getnode() work again on Python 3. by Serhiy Storchaka · 11 years ago
  98. 46bebee Issue #17134: Add ssl.enum_cert_store() as interface to Windows' cert store. by Christian Heimes · 11 years ago
  99. 6d7ad13 Issue #18143: Implement ssl.get_default_verify_paths() in order to debug by Christian Heimes · 11 years ago
  100. 9670543 Issue #18038: SyntaxError raised during compilation sources with illegal by Serhiy Storchaka · 11 years ago