1. 76916e8 Issue #21477: Add htests for GrepDialog, UndoDelegator, and configDialog. by Terry Jan Reedy · 11 years ago
  2. edb6428 Issue #21402: tkinter.ttk now works when default root window is not set. by Serhiy Storchaka · 11 years ago
  3. 49b2086 Issue #21493: Added test for ntpath.expanduser(). Original patch by by Serhiy Storchaka · 11 years ago
  4. 30080fd Issue #10203: sqlite3.Row now truly supports sequence protocol. In particular by Serhiy Storchaka · 11 years ago
  5. d0d4f2d Issue #21477: Add htests for Search and Replace dialogs. by Terry Jan Reedy · 11 years ago
  6. 985ef28 Issue #21477: Idle htest: modify run; add more tests. by Terry Jan Reedy · 11 years ago
  7. fb8899a Issue #21481: Teach argparse equality tests to return NotImplemented when comparing to unknown types. by Raymond Hettinger · 11 years ago
  8. f643b9a Issue 8743: Improve interoperability between sets and the collections.Set abstract base class. by Raymond Hettinger · 11 years ago
  9. 92df752 Issue 13355: Make random.triangular degrade gracefully when low == high. by Raymond Hettinger · 11 years ago
  10. 1f94efc Issue #19925: Added tests for the spwd module. Original patch by Vajrasky Kok. by Serhiy Storchaka · 11 years ago
  11. 62012fc Issue #21477: Idle htest: merge and modify run and runall; add many tests. by Terry Jan Reedy · 11 years ago
  12. 47e4b0b Issue #18604: Skip the Tk instantiation test on OS X because it can by Ned Deily · 11 years ago
  13. 6599439 Fixed new Tkinter tests added in issue #21522 with Tk 8.4. by Serhiy Storchaka · 11 years ago
  14. 4f0e167 Issue #21522: Added Tkinter tests for Listbox.itemconfigure(), by Serhiy Storchaka · 11 years ago
  15. f19771f Issue #20635: Added tests for Tk geometry managers. by Serhiy Storchaka · 11 years ago
  16. ab4a691 Issue #21523: Fix over-pessimistic computation of the stack effect of some opcodes in the compiler. by Antoine Pitrou · 11 years ago
  17. 4345846 Issue #21477: idle htests - lower case function names, other cleanups. by Terry Jan Reedy · 11 years ago
  18. 996bf48 bump to 2.7.7rc1 by Benjamin Peterson · 11 years ago
  19. 03b48b1 update pydoc_topics by Benjamin Peterson · 11 years ago
  20. 5918f8f 'sunos' not 'solaris by Benjamin Peterson · 11 years ago
  21. 15773c8 just skip this test on Solaris by Benjamin Peterson · 11 years ago
  22. 6800d93 some platforms apparently don't care about fdopen'ing with a different mode by Benjamin Peterson · 11 years ago
  23. d3d2363 support pep 3118 format strings for ctypes objects with nontrivial shapes (closes #10744) by Benjamin Peterson · 11 years ago
  24. 36f28f7 Backport Fix for Issue #7776: Fix ``Host:'' header and reconnection when using http.client.HTTPConnection.set_tunnel(). by Senthil Kumaran · 11 years ago
  25. fb371af Issue #18104: revise docstrings, remove obsolete comments. by Terry Jan Reedy · 11 years ago
  26. ddb39e7 Issue #21470: Do a better job seeding the random number generator by Raymond Hettinger · 11 years ago
  27. a5413c4 Issue 21469: Mitigate risk of false positives with robotparser. by Raymond Hettinger · 11 years ago
  28. c594596 whitespace by Terry Jan Reedy · 11 years ago
  29. 00b0bd5 Issue #18104: Add idlelib/idle_test/htest.py with a few sample tests to begin by Terry Jan Reedy · 11 years ago
  30. 3428620 this file now has utf-8 chars by Benjamin Peterson · 11 years ago
  31. 629026a backport hmac.compare_digest to partially implement PEP 466 (closes #21306) by Benjamin Peterson · 11 years ago
  32. b0acc1b Issue #21350: Fix file.writelines() to accept arbitrary buffer objects, as advertised. by Antoine Pitrou · 11 years ago
  33. 9ba90c9 - Issue #17752: Fix distutils tests when run from the installed location. by doko@ubuntu.com · 11 years ago
  34. 2460dc8 Issue #18604: Consolidated checks for GUI availability. by Zachary Ware · 11 years ago
  35. 3ec903f Issue #21321: itertools.islice() now releases the reference to the source iterator when the slice is exhausted. by Antoine Pitrou · 11 years ago
  36. b7967cc #21225: copy docstrings from base classes by Andrew Kuchling · 11 years ago
  37. 3c5816f Issue #9291 Do not attempt to re-encode mimetype data read from registry in ANSI mode. Initial patches by Dmitry Jemerov & Vladimir Iofik by Tim Golden · 11 years ago
  38. 807c9da Issue #18944: backport typo fix by Terry Jan Reedy · 11 years ago
  39. 3c603f3 Issue21349 Passing a memoryview to _winreg.SetValueEx now correctly raises a TypeError where it previously crashed the interpreter. Patch by Brian Kearns by Tim Golden · 11 years ago
  40. 4e0df17 Issue #21346: Fix typos in test_itertools. Patch by Brian Kearns. by Zachary Ware · 11 years ago
  41. 46b6c08 Issue #21138: Change default reformat paragraph width to PEP 8's 72. by Terry Jan Reedy · 11 years ago
  42. 0edf52a Issue 21284: Idle: make test_formatparagraph pass even when a user changes the by Terry Jan Reedy · 11 years ago
  43. 8488901 Issue #21311: Avoid exception in _osx_support with non-standard compiler by Ned Deily · 11 years ago
  44. cb4069c #1704474: mark refleak test as specific to CPython by Andrew Kuchling · 11 years ago
  45. 5c863bf when an exception is raised in fdopen, never close the fd (changing on my mind on #21191) by Benjamin Peterson · 11 years ago
  46. e03d3fd do not generate pipe names in the temporary dir by Benjamin Peterson · 11 years ago
  47. 9a55cd8 Issue #12546: Allow \x00 as a fill character for builtin type __format__ methods. by Eric V. Smith · 11 years ago
  48. 6c939cb in scan_once, prevent the reading of arbitrary memory when passed a negative index by Benjamin Peterson · 11 years ago
  49. 5aad46e Issue #21172: isinstance check relaxed from dict to collections.Mapping. by Vinay Sajip · 11 years ago
  50. 00109c9 teach 2to3 about 'yield from' by Benjamin Peterson · 11 years ago
  51. da952f3 add matrix multiplication operator support to 2to3 by Benjamin Peterson · 11 years ago
  52. 02ab7a8 make sure fdopen always closes the fd in error cases (closes #21191) by Benjamin Peterson · 11 years ago
  53. 3c0027b use with statement by Benjamin Peterson · 11 years ago
  54. c2dafe6 explicitly close file object (#21128) by Benjamin Peterson · 11 years ago
  55. 7b26a5a properly explicitly close file (#21128) by Benjamin Peterson · 11 years ago
  56. d7ffb77 make temporary read-only files writable, so rmtree can remove them (#21128) by Benjamin Peterson · 11 years ago
  57. 66d8dbe Issue #21149: Improved thread-safety in logging cleanup during interpreter shutdown. by Vinay Sajip · 11 years ago
  58. 352eb4f properly close files in test_zipfile (#20887) by Benjamin Peterson · 11 years ago
  59. 0768100 make sure to test UnicodeEncodeError, too by Benjamin Peterson · 11 years ago
  60. c4e6e0a bail in unicode error's __str__ methods if the objects are not properly initialized (closes #21134) by Benjamin Peterson · 11 years ago
  61. 3853438 use https docs url (#21115) by Benjamin Peterson · 11 years ago
  62. d42f60e fix overflow detection of strop.expandtabs by Benjamin Peterson · 11 years ago
  63. 40e95df Issue #21029: IDLE now colors print consistently as a keyword. by Raymond Hettinger · 11 years ago
  64. 3ac8665 Issue #21093: Prevent failures of ctypes test_macholib on OS X if a by Ned Deily · 11 years ago
  65. 57847df Issue #17654: Ensure IDLE menus are customized properly on OS X for by Ned Deily · 11 years ago
  66. b693e9f Issue #6676: Ensure a meaningful exception is raised when attempting by Ned Deily · 11 years ago
  67. c727533 Issue #20939: Use www.example.com instead of www.python.org to avoid test by Ned Deily · 11 years ago
  68. 6d91176 backport: #20145: assertRaisesRegexp now raises a TypeError on bad regex. by R David Murray · 11 years ago
  69. 988bc97 Issue #21038: Cleanup test_epoll.py by Victor Stinner · 11 years ago
  70. dd48b90 Issue #21058: NamedTemporaryFile() closes the FD on any error, not only Exception by Victor Stinner · 11 years ago
  71. 367f5d3 Issue #21058: Fix a leak of file descriptor in tempfile.NamedTemporaryFile(), by Victor Stinner · 11 years ago
  72. e3af6f0 fix ctypes test alignment assumptions (closes #20946) by Benjamin Peterson · 11 years ago
  73. a146df8 Issue #20939: Fix test_geturl failure in test_urllibnet due to by Ned Deily · 11 years ago
  74. 4c874ef weaken callback count inequality (closes #20901) by Benjamin Peterson · 11 years ago
  75. 944996f remove unnecessary word (closes #19060) by Benjamin Peterson · 11 years ago
  76. 31fe52d Make distutils error messages more helpful (#11599). by Éric Araujo · 11 years ago
  77. ae80f45 use ssl.PROTOCOL_SSLv23 for maximum compatibility (closes #20896) by Benjamin Peterson · 11 years ago
  78. 00ee494 Fix missing import in bdist_rpm (#18045) by Éric Araujo · 11 years ago
  79. b509903 Restore missing part of error message (#4931) by Éric Araujo · 11 years ago
  80. 3d1134e Avoid “error: None” messages from distutils (#4931). by Éric Araujo · 11 years ago
  81. 4c150e0 Improve the default seeding in random module to use 32 bytes of entropy when available. by Raymond Hettinger · 11 years ago
  82. e50fe4c Issue #20283: RE pattern methods now accept the string keyword parameters by Serhiy Storchaka · 11 years ago
  83. 09f4f25 Issue #15618: Make turtle.py itself work when run from a module with by Terry Jan Reedy · 11 years ago
  84. fd48a56 Correct and improve comments in test_fileinput (closes #20501). by Serhiy Storchaka · 11 years ago
  85. bde1cfb fix test_posix.test_initgroups to work without supplemental groups (closes #20249) by Benjamin Peterson · 11 years ago
  86. 44fad46 Issue #20567: Delete class attribute gui widgets in idle tests. by Terry Jan Reedy · 11 years ago
  87. 68b8a94 Issue #20501: fileinput module no longer reads whole file into memory when using by Serhiy Storchaka · 11 years ago
  88. bd7cf3a Issue #9974: When untokenizing, use row info to insert backslash+newline. by Terry Jan Reedy · 11 years ago
  89. aa73ea0 Issue #20743: Fix a reference leak in test_tcl. by Antoine Pitrou · 11 years ago
  90. 0b1faea update logo url (#20695) by Benjamin Peterson · 11 years ago
  91. 2ac9d31 Issue #6815: os.path.expandvars() now supports non-ASCII Unicode environment by Serhiy Storchaka · 11 years ago
  92. c77d4ba Issue #20510: Confirm that the code attribute of the SystemExit by Zachary Ware · 11 years ago
  93. 3e0cb09 Fixed grid_columnconfigure() and grid_rowconfigure() methods of by Serhiy Storchaka · 11 years ago
  94. dd091d7 Issue #20510: Rewrote test_exit in test_sys to match existing comments by Zachary Ware · 11 years ago
  95. 8ab7cba whitespace by Terry Jan Reedy · 11 years ago
  96. 6858f00 Issue #8478: Untokenizer.compat now processes first token from iterator input. by Terry Jan Reedy · 11 years ago
  97. 7751a34 Untokenize: An logically incorrect assert tested user input validity. by Terry Jan Reedy · 11 years ago
  98. 5503579 backout 369bf9fbaeff by Benjamin Peterson · 11 years ago
  99. f387e96 remove tests for #19081 by Benjamin Peterson · 11 years ago
  100. e9aab0f backout #19081 to fix #20621 by Benjamin Peterson · 11 years ago