1. ac64164 Issue #18747: Update Misc/NEWS to reflect the latest changeset. by Christian Heimes · 11 years ago
  2. 1d0f73d Issue #18747: Use a parent atfork handler instead of a child atfork handler. by Christian Heimes · 11 years ago
  3. 78254dc 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
  4. 4203570 Issue #17119: Fixed integer overflows when processing large Unicode strings by Serhiy Storchaka · 11 years ago
  5. b817faa Issue #15233: Python now guarantees that callables registered with the atexit by Charles-François Natali · 11 years ago
  6. 8df3df4 merge by Christian Heimes · 11 years ago
  7. 0d604cf Issue #18747: Re-seed OpenSSL's pseudo-random number generator after fork. by Christian Heimes · 11 years ago
  8. 1c73d50 Null merge. by Barry Warsaw · 11 years ago
  9. f880e5d Fix UnboundLocalError regression due to previous incorrect fix for issue 16248. by Barry Warsaw · 11 years ago
  10. c360389 Issue #8865: Concurrent invocation of select.poll.poll() now raises a by Serhiy Storchaka · 11 years ago
  11. a9885e9 Issue #13461: Fix a crash in the TextIOWrapper.tell method and in the "replace" by Serhiy Storchaka · 11 years ago
  12. 83737c6 Issue #2537: Remove breaked check which prevented valid regular expressions. by Serhiy Storchaka · 11 years ago
  13. 0364134 Issue #18647: A regular expression in the doctest module rewritten so that by Serhiy Storchaka · 11 years ago
  14. 34ecb11 Issue #18647: Correctly bound calculated min/max width of a subexpression. by Serhiy Storchaka · 11 years ago
  15. 1010781 Issue #18777: The ssl module now uses the new CRYPTO_THREADID API of by Christian Heimes · 11 years ago
  16. f65d454 Issue #18761: Improved cross-references in email documentation. by Serhiy Storchaka · 11 years ago
  17. 41fca3e Issue #18489: idlelib.SearchEngine - add docstrings by Terry Jan Reedy · 11 years ago
  18. a81e969 Issue #18592: whitespace by Terry Jan Reedy · 11 years ago
  19. 9946a28 Issue #18592: Add docstrings to file being tested (idlelib.SearchDialogBase.py). by Terry Jan Reedy · 11 years ago
  20. ec8c219 add missing # by Christian Heimes · 11 years ago
  21. b4ec842 Issue 18768: Correct doc string of RAND_edg(). Patch by Vajrasky Kok. by Christian Heimes · 11 years ago
  22. f1bd47a Issue #18768: coding style nitpick. Thanks to Vajrasky Kok by Christian Heimes · 11 years ago
  23. 419e23c #18466: fix more typos. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
  24. 5dd99eb #18741: fix more typos. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
  25. b37327b merge 2.7 by Christian Heimes · 11 years ago
  26. 6e0be01 Issue #18178: Fix ctypes on BSD. dlmalloc.c was compiled twice which broke malloc weak symbols. by Christian Heimes · 11 years ago
  27. f5469cf #18705: fix a number of typos. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
  28. 10b5130 Issue #18759: Improved cross-references in logging documentation. by Vinay Sajip · 11 years ago
  29. 88b174c Issue #18709: Fix CVE-2013-4238. The SSL module now handles NULL bytes by Christian Heimes · 11 years ago
  30. 326ec04 test_execvpe_with_bad_arglist shouldn't be in URandomTests by Antoine Pitrou · 11 years ago
  31. f48a67b Issue #18756: Improve error reporting in os.urandom() when the failure is due to something else than /dev/urandom not existing. by Antoine Pitrou · 11 years ago
  32. 7cad370 #18707: point to Doc/README.txt in the README file. Patch by Madison May. by Ezio Melotti · 11 years ago
  33. 79a16a8 Issue #16190: fix random module recommendation to use ssl.RAND_bytes(). by Antoine Pitrou · 11 years ago
  34. 1703df6 Issue #18732: Remove unused* parameter output_sep from IdleHistory.History by Terry Jan Reedy · 11 years ago
  35. 74b3290 Issue #18226: Fix ImportError and subsequent TypeError in 2.7 backport. by Terry Jan Reedy · 11 years ago
  36. 8ce36dd Issue #18425: Unittests for idlelib.IdleHistory. First patch by R. Jayakrishnan. by Terry Jan Reedy · 11 years ago
  37. a80d3a0 Issue #18718: datetime documentation contradictory on leap second support by David Wolever · 11 years ago
  38. 0e413bd Issue 18719: Remove a false optimization by Raymond Hettinger · 11 years ago
  39. b638a38 Issue #18425: Add docstrings to IdleHistory.py. Remove redundant 'history_' by Terry Jan Reedy · 11 years ago
  40. 4221b7c Add NEWS entry for 0f17aed78168 (issue #16248) by Antoine Pitrou · 11 years ago
  41. d674927 #18687: remove obsolete comment. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
  42. 6681398 Issue 18724: Fix typo noticed by Susan Tan. by Ned Deily · 11 years ago
  43. 1eeba83 Increasing test coverage of ftplib. Patch by Muhammad Jehanzeb by Senthil Kumaran · 11 years ago
  44. b4e186c Documenting that json.load may raise a ValueError. by Felix Crux · 11 years ago
  45. 452dd38 Issue #17701: Improving strftime documentation by David Wolever · 11 years ago
  46. d599142 #18663: document that assertAlmostEqual also works when the values are equal and add tests. by Ezio Melotti · 11 years ago
  47. bb8114c Issue #18676: Change 'positive' to 'non-negative' in queue.py put and get by Terry Jan Reedy · 11 years ago
  48. 0fd1156 Issue #18429: Add user-oriented News entry about Format / Format Paragraph by Terry Jan Reedy · 11 years ago
  49. 3d35489 Issue #18226: Add docstrings and unittests for idlelib/FormatParagraph.py. by Terry Jan Reedy · 11 years ago
  50. 7921b30 #18357: add tests for dictview set difference. Patch by Fraser Tweedale. by Ezio Melotti · 11 years ago
  51. e822b03 Issue #15866: The xmlcharrefreplace error handler no more produces two XML by Serhiy Storchaka · 11 years ago
  52. 5ad3514 Issue #18661: typo in grp.struct_group docstring. by Mark Dickinson · 11 years ago
  53. 007684a Silence compiler warning for unused declaration. by Raymond Hettinger · 11 years ago
  54. f948943 Issue #18151: Replace remaining Idle 'open...close' pairs with 'with open'. by Terry Jan Reedy · 11 years ago
  55. b671701 Issue #13612: Fix a buffer overflow in case of a multi-byte encoding. by Eli Bendersky · 11 years ago
  56. 06fbac5 Issue #18647: Temporary disable the "nothing to repeat" check to make buildbots happy. by Serhiy Storchaka · 11 years ago
  57. d5375df Issue #16067: Add description into MSI file to replace installer's temporary name. by Martin v. Löwis · 11 years ago
  58. 3ade66c Issue #17998: Fix an internal error in regular expression engine. by Serhiy Storchaka · 11 years ago
  59. e8e3121 Issue #18325: Fix a test_kqueue failure on OpenBSD: kevent's data and event by Charles-François Natali · 11 years ago
  60. 8074364 Issue #17557: Fix os.getgroups() to work with the modified behavior of by Ned Deily · 11 years ago
  61. 594e8eb Add 2.7.6 uuids. by Martin v. Löwis · 11 years ago
  62. 9a32543 Add 2.7.5 uuid by Martin v. Löwis · 11 years ago
  63. ba7620c Fix tkinter regression introduced by the security fix in #16248. by Antoine Pitrou · 11 years ago
  64. 92fae55 Issue #18589: fix hyperlinking of type slots (tp_*) by Antoine Pitrou · 11 years ago
  65. fb77386 Issue #18071: Extension module builds on OS X could fail with TypeError by Ned Deily · 11 years ago
  66. 9ba8d6b Make all idle test case names end with 'Test'. by Terry Jan Reedy · 11 years ago
  67. aea6c11 Update gui section of idle test README. by Terry Jan Reedy · 11 years ago
  68. 662908b Restore the data block size to 62. by Raymond Hettinger · 11 years ago
  69. 16b10c6 Issue #18441: Move commented out code to issue message. by Terry Jan Reedy · 11 years ago
  70. d826d77 Issue #18441: whitespace by Terry Jan Reedy · 11 years ago
  71. 47cb4d6 Issue #18441: Comment out code that will not compile because the standard by Terry Jan Reedy · 11 years ago
  72. d71244f Issue #18441: add Mac (darwin) gui check. This is not needed today, but has been by Terry Jan Reedy · 11 years ago
  73. cc8506e Update int division to quiet 2to3 warning. by Terry Jan Reedy · 11 years ago
  74. 6fb6f8c Issue #18441: Correct previous patch, which hg committed before I wanted it to. by Terry Jan Reedy · 11 years ago
  75. 09eb26f Issue #18441: Make test.support.requires('gui') skip when it should. by Terry Jan Reedy · 11 years ago
  76. 241f653 Remove repetition of string escapes note 1 at end of note 2. by Terry Jan Reedy · 11 years ago
  77. 3490655 Issue #18539: Calltips now work for float default arguments. by Terry Jan Reedy · 11 years ago
  78. d5648ac #15130: remove repeat of abstract paragraph from socket howto body. by R David Murray · 11 years ago
  79. e21b6ae #14853: remove test that was making too many assumptions about stdin. Patch by Elena Oat. by Ezio Melotti · 11 years ago
  80. bcf55a7 Issue #18541: simplified LoggerAdapter example. by Vinay Sajip · 11 years ago
  81. f688f72 Backed out changeset: 23b0164b9c82 #18441 not working by Terry Jan Reedy · 11 years ago
  82. 1ad65ac Backed out changeset: 9f922270a929 so can backout larger patch by Terry Jan Reedy · 11 years ago
  83. 518e48b Issue #18441: fix buildbot name-error for TclError. by Terry Jan Reedy · 11 years ago
  84. 7af16b3 Issue #18439: Move news entry misplaced by graft merge. by Terry Jan Reedy · 11 years ago
  85. 68ad1d1 Issue #18439: Make patchcheck work on Windows for ACKS, NEWS. by Terry Jan Reedy · 11 years ago
  86. 2c636fd Issue #18441: Make test.support.requires('gui') skip when it should. by Terry Jan Reedy · 11 years ago
  87. 14ef0c8 Issue #17532: Prevent exception when changing key sets if Options menu is empty. by Ned Deily · 11 years ago
  88. 6946814 Issue #18513: Add workaround for OS X 10.8 cexp bug that leads to wrong cmath.rect(0.0,-0.0) results. by Raymond Hettinger · 11 years ago
  89. f52d574 Issue #18448: Fix a typo in Demo/newmetaclasses/Eiffel.py. by Serhiy Storchaka · 11 years ago
  90. b77ed2c Backport c952f3d122ae: Tweak the deque struct by moving the least used fields by Raymond Hettinger · 11 years ago
  91. 90180c1 Move the leftlink to the end of the block structure. by Raymond Hettinger · 11 years ago
  92. b7a285f Issue #18471: Fix typo in heapq documentation (reported by François Pinard). by Ned Deily · 11 years ago
  93. c8ef9bc Issue #18455: multiprocessing should not retry connect() with same socket. by Richard Oudkerk · 11 years ago
  94. a85fa5c Move entry from #18427 to the right section in the NEWS file by Ronald Oussoren · 11 years ago
  95. c967a59 Issue #18452: fix several "occurrence" typos (reported by Févry Thibault). by Ned Deily · 11 years ago
  96. a25a31a Issue #18365: convert buildbot errors to skips. by Terry Jan Reedy · 11 years ago
  97. c8a198c Issue #18279: Add tests for idlelib/RstripExtension.py. Original patch by by Terry Jan Reedy · 11 years ago
  98. e7cbd3f Issue #18365: 2.7 corrections so tests run by Terry Jan Reedy · 11 years ago
  99. d781b07 #18437: fix comment typo. by R David Murray · 11 years ago
  100. fccb0d2 Issue #18365: normalize whitespace by Terry Jan Reedy · 11 years ago