1. a661f45 Close #18745: Improve enum tests in test_json for infinities and NaN. by Ethan Furman · 11 years ago
  2. 625eed7 test_threading isn't rudimentary anymore by Antoine Pitrou · 11 years ago
  3. 4c8ce84 test_threading isn't rudimentary anymore by Antoine Pitrou · 11 years ago
  4. f6fa22e Issue #18571: Merge duplicate test code by Victor Stinner · 11 years ago
  5. 8913a6c Issue #11798: fix tests for regrtest -R : by Andrew Svetlov · 11 years ago
  6. 59360aa Back out 868ad6fa8e68 - it left all the buildbots failing. by Tim Peters · 11 years ago
  7. ec15a82 Close #18738: Route __format__ calls to mixed-in type for mixed Enums (such as IntEnum). by Ethan Furman · 11 years ago
  8. b2ff3cf Switch the AF_* and SOCK_* constants in the socket module to IntEnum. by Eli Bendersky · 11 years ago
  9. 7e7cf8b Issue #12037: Fix test_email for desktop Windows. by Terry Jan Reedy · 11 years ago
  10. 740d6b6 Issue #12037: Fix test_email for desktop Windows. by Terry Jan Reedy · 11 years ago
  11. 2e87c87 Merge from 3.3 #18489 Search Engine tests by Terry Jan Reedy · 11 years ago
  12. 31e4d32 Issue #18489: Add complete, gui-free tests for idlelib.SearchEngine. by Terry Jan Reedy · 11 years ago
  13. 13bdfa7 Issue #18780: code cleanup. by Ethan Furman · 11 years ago
  14. a412137 Temporary disable tests cleanup (issue 11798). by Andrew Svetlov · 11 years ago
  15. fb13721 Close #18780: %-formatting now prints value for int subclasses with %d, %i, and %u codes. by Ethan Furman · 11 years ago
  16. 08548f4 Merge. by Charles-François Natali · 11 years ago
  17. fcfb324 Use the recent support.HOSTv6 addition. by Charles-François Natali · 11 years ago
  18. 267964c Forward port new tests from Issue #18851. by Antoine Pitrou · 11 years ago
  19. a839271 Forward port new tests from Issue #18851. by Antoine Pitrou · 11 years ago
  20. 79a53ea Issue #18418: After fork(), reinit all threads states, not only active ones. by Charles-François Natali · 11 years ago
  21. 9939cc8 Issue #18418: After fork(), reinit all threads states, not only active ones. by Charles-François Natali · 11 years ago
  22. b586934 Issue #17741: Rename IncrementalParser and its methods. by Eli Bendersky · 11 years ago
  23. 1221f6b utilize int.from_bytes by Philip Jenvey · 11 years ago
  24. da0bea2 improve comment by Benjamin Peterson · 11 years ago
  25. f908efb make lists uniformly integers for the benefit of pypy by Benjamin Peterson · 11 years ago
  26. 6cc5039 Fixes Issue #15507: test_subprocess's test_send_signal could fail if the test by Gregory P. Smith · 11 years ago
  27. dee0434 Fixes issue #15507: test_subprocess's test_send_signal could fail if the test by Gregory P. Smith · 11 years ago
  28. f25f80c Merge. by Charles-François Natali · 11 years ago
  29. e33d5b0 Merge. by Charles-François Natali · 11 years ago
  30. 74b7408 Issue #18643: Fix some test_socket failures due to large default socket buffer by Charles-François Natali · 11 years ago
  31. 5fd2642 Issue #18643: Fix some test_socket failures due to large default socket buffer by Charles-François Natali · 11 years ago
  32. e0d25ce Issue #8713: Print dangling processes/threads, if any. by Richard Oudkerk · 11 years ago
  33. 83d7dea Issue #8713: Cleanup before saving process._dangling. by Richard Oudkerk · 11 years ago
  34. 968d055 Issue #8713: Test should not print message about start method. by Richard Oudkerk · 11 years ago
  35. de2800f Issue #17974: Switch unittest from using getopt to using argparse. by Serhiy Storchaka · 11 years ago
  36. 64f7c4e Issue #16799: Switched from getopt to argparse style in regrtest's argument by Serhiy Storchaka · 11 years ago
  37. 48e6a8c Issue #18743: Fix references to non-existant "StringIO" module by Serhiy Storchaka · 11 years ago
  38. 50254c5 Issue #18743: Fix references to non-existant "StringIO" module by Serhiy Storchaka · 11 years ago
  39. 7c1017b Fix tests for #11798 by Andrew Svetlov · 11 years ago
  40. eb97368 Issue #11798: TestSuite now drops references to own tests after execution. by Andrew Svetlov · 11 years ago
  41. 6a53af8 Issue #18786: Don't reinstall old SIGUSR1 handler prematurely. by Richard Oudkerk · 11 years ago
  42. d98af98 (Merge 3.3) Fix @requires_freebsd_version and @requires_linux_version by Victor Stinner · 11 years ago
  43. d39dca9 Fix test_socket.test_SOCK_CLOEXEC(), the test was wrong by Victor Stinner · 11 years ago
  44. 3b44a40 Fix @requires_freebsd_version and @requires_linux_version decorators of by Victor Stinner · 11 years ago
  45. bff989e test_posix.test_pipe2() now checks that the O_NONBLOCK flag is set by Victor Stinner · 11 years ago
  46. 67973c0 Issue #18865: remove unused import from multiprocessing.util.spawnv_passfds() by Victor Stinner · 11 years ago
  47. 0d097b6 Issue #18865: PEP 446 makes multiprocessing.util.pipe() unnecessary. by Richard Oudkerk · 11 years ago
  48. daf4555 Issue #18571: Implementation of the PEP 446: file descriptors and file handles by Victor Stinner · 11 years ago
  49. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  50. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  51. 14e461d Close #11619: The parser and the import machinery do not encode Unicode by Victor Stinner · 11 years ago
  52. 6206a7e Remove the obsolete XMLParser._start/_start_list duality. by Eli Bendersky · 11 years ago
  53. ec42975 #18833: merge with 3.3. by Ezio Melotti · 11 years ago
  54. 4f1353a #18833: add a test for test_telnetlib. Patch by Alex Volkov. by Ezio Melotti · 11 years ago
  55. 7eaf3f7 Issue #18808: Non-daemon threads are now automatically joined when a sub-interpreter is shutdown (it would previously dump a fatal error). by Antoine Pitrou · 11 years ago
  56. a439b32 Merge. by Charles-François Natali · 11 years ago
  57. c20a7b9 Merge. by Charles-François Natali · 11 years ago
  58. 249cdc3 Issue #18763: subprocess: The file descriptors are now closed after calling the by Charles-François Natali · 11 years ago
  59. 58b3ebf Issue #18817: Fix a resource warning in Lib/aifc.py demo. Patch by by Serhiy Storchaka · 11 years ago
  60. b33baf1 Issue #18817: Fix a resource warning in Lib/aifc.py demo. by Serhiy Storchaka · 11 years ago
  61. 0cb8e51 Merge #16611: BaseCookie now parses 'secure' and 'httponly' flags. by R David Murray · 11 years ago
  62. cd0f74b #16611: BaseCookie now parses 'secure' and 'httponly' flags. by R David Murray · 11 years ago
  63. 2769d44 Issue #18709: Fix issue with IPv6 address in subjectAltName on Mac OS X Tiger by Christian Heimes · 11 years ago
  64. 157c983 Issue #18709: Fix issue with IPv6 address in subjectAltName on Mac OS X Tiger by Christian Heimes · 11 years ago
  65. 5939027 Closes #18807: pyvenv now takes a --copies argument allowing copies instead of symlinks even where symlinks are available and the default. by Vinay Sajip · 11 years ago
  66. f5e30d8 Issue #18756: make test_urandom_failure more robust by executing its code in a subprocess by Antoine Pitrou · 11 years ago
  67. eba25ba Issue #18756: make test_urandom_failure more robust by executing its code in a subprocess by Antoine Pitrou · 11 years ago
  68. 0956689 Close #18538: ``python -m dis`` now uses argparse. by Nick Coghlan · 11 years ago
  69. e726ce1 (Merge 3.3) test_socket: cancel scheduled alarm on test failure by Victor Stinner · 11 years ago
  70. 71fe8c0 test_socket: cancel scheduled alarm on test failure by Victor Stinner · 11 years ago
  71. 3a7dffa remove support for compiling on systems without getcwd() by Benjamin Peterson · 11 years ago
  72. 0acbcb5 Issue #17741: use composition, rather than inheritance, for xml.etree.iterparse's result class. by Antoine Pitrou · 11 years ago
  73. 892584e #18798: merge typo fix from 3.3 and also use two unused variables. by Ezio Melotti · 11 years ago
  74. 78ede7c #18798: fix typo in test_fcntl. Patch by Vajrasky Kok. by Ezio Melotti · 11 years ago
  75. 6e6c6ac #18796: improve documentation of the file argument of dis.show_code. Initial patch by Vajrasky Kok. by Ezio Melotti · 11 years ago
  76. f79126f Issue #18394: Explicitly close the file object cgi.FieldStorage caches. by Brett Cannon · 11 years ago
  77. 9c7eb55 Stop using assertEquals. by Brett Cannon · 11 years ago
  78. 7e0a181 Make test_import more robust and stop using assertRaisesRegexp(). by Brett Cannon · 11 years ago
  79. a93c6db (Merge 3.3) Close #17702: On error, os.environb now removes suppress the except by Victor Stinner · 11 years ago
  80. 0c2dd0c Close #17702: On error, os.environb now removes suppress the except context by Victor Stinner · 11 years ago
  81. 330cc52 Delete merge markers by Brett Cannon · 11 years ago
  82. 16ababc merge for issue #18755 by Brett Cannon · 11 years ago
  83. a4975a9 Issue #18755: Allow imp.load_*() loaders to have get_data() called by Brett Cannon · 11 years ago
  84. 67e5198 Make test for semaphore tracker capture and check the debug output. by Richard Oudkerk · 11 years ago
  85. e39e54d Issue #16809: Fixed some tkinter incompabilities with Tcl/Tk 8.6. by Serhiy Storchaka · 11 years ago
  86. 06ce077 Issue #16809: Fixed some tkinter incompabilities with Tcl/Tk 8.6. by Serhiy Storchaka · 11 years ago
  87. 254954a Issue #16809: Tkinter's splitlist() and split() methods now accept Tcl_Obj by Serhiy Storchaka · 11 years ago
  88. 203eb31 Issue #16809: Tkinter's splitlist() and split() methods now accept Tcl_Obj by Serhiy Storchaka · 11 years ago
  89. 7d2d43c Stop making fork server have copy of semaphore_tracker_fd. by Richard Oudkerk · 11 years ago
  90. 0718f70 Issue #18762: Fix EBADF error when using forkserver. by Richard Oudkerk · 11 years ago
  91. b8c5370 Merge #18324: set_payload now correctly handles binary input. by R David Murray · 11 years ago
  92. 00ae435 #18324: set_payload now correctly handles binary input. by R David Murray · 11 years ago
  93. 82fb71d Cleanup test_builtin by Victor Stinner · 11 years ago
  94. 0f24b87 Use new new stat.S_ISDOOR() function, instead of hardcoded mask by Victor Stinner · 11 years ago
  95. 1e440cf Issue #18792: Use "127.0.0.1" or "::1" instead of "localhost" as much as possible, since "localhost" goes through a DNS lookup under recent Windows versions. by Antoine Pitrou · 11 years ago
  96. f6fbf56 Issue #18792: Use "127.0.0.1" or "::1" instead of "localhost" as much as possible, since "localhost" goes through a DNS lookup under recent Windows versions. by Antoine Pitrou · 11 years ago
  97. 13423c3 Close #18794: Add a fileno() method and a closed attribute to select.devpoll by Victor Stinner · 11 years ago
  98. 43f80e6 Merge heads by Serhiy Storchaka · 11 years ago
  99. a01fb39 Issue #18762: Print debug info on failure to create new forkserver process. by Richard Oudkerk · 11 years ago
  100. 4e4088d Issue #17119: Fixed integer overflows when processing large strings and tuples by Serhiy Storchaka · 11 years ago