1. 7e59ce8 Issue #14285: Do not catch ImportError from __init__.py in runpy by Martin Panter · 9 years ago
  2. ab68fca Issue #6478: _strptime's regexp cache now is reset after changing timezone by Serhiy Storchaka · 9 years ago
  3. e37003e Issue #19543: Added Py3k warning for decoding unicode. by Serhiy Storchaka · 9 years ago
  4. 2329eed Issue #25718: Fixed copying object with state with boolean value is false. by Serhiy Storchaka · 9 years ago
  5. e08496b Closes #25742: locale.setlocale() now accepts a Unicode string for its second by Victor Stinner · 9 years ago
  6. 9baa568 Issue #10131: Fixed deep copying of minidom documents. Based on patch by Serhiy Storchaka · 9 years ago
  7. ee1b24c Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside by Serhiy Storchaka · 9 years ago
  8. 282e831 Issue #25616: Tests for OrderedDict are extracted from test_collections by Serhiy Storchaka · 9 years ago
  9. 8d30ad7 Issue #24731: Fixed crash on converting objects with special methods by Serhiy Storchaka · 9 years ago
  10. 80767a3 Issue #25725: Fixed a reference leak in cPickle.loads() when unpickling by Serhiy Storchaka · 9 years ago
  11. 96bc175 Issue #25663: Make rlcompleter avoid duplicate global names by Martin Panter · 9 years ago
  12. b3d8b59 Issue #25688: Fixed file leak in ElementTree.iterparse() raising an error. by Serhiy Storchaka · 9 years ago
  13. 5c13766 Issue #23914: Fixed SystemError raised by unpickler on broken pickle data. by Serhiy Storchaka · 9 years ago
  14. 71f8dd7 rm duplicate entry by Benjamin Peterson · 9 years ago
  15. b37d9b4 merge 2.7.11 release branch by Benjamin Peterson · 9 years ago
  16. 5323ed3 Issue #25624: ZipFile now always writes a ZIP_STORED header for directory entries. Patch by Dingyuan Wang. by Benjamin Peterson · 9 years ago
  17. 37c02ac Issue #25624: ZipFile now always writes a ZIP_STORED header for directory by Serhiy Storchaka · 9 years ago
  18. 4d04361 news section for 2.7.12 by Benjamin Peterson · 9 years ago
  19. 85592c9 post rc1 updates by Benjamin Peterson · 9 years ago
  20. c6f13db bump to 2.7.11rc1 by Benjamin Peterson · 9 years ago
  21. a3ce2e5 Misc/NEWS entries for IDLE. by Terry Jan Reedy · 9 years ago
  22. 6156560 Issue #25678: Copy buffer objects to null-terminated strings. by Serhiy Storchaka · 9 years ago
  23. 2a6c2c9 Close #10128: don't rerun __main__.py in multiprocessing by Nick Coghlan · 9 years ago
  24. c591936 fix possible memory lea k in _get_aia_uri (closes #25578) by Benjamin Peterson · 9 years ago
  25. 5d7d26c Issue #25388: Fixed tokenizer hang when processing undecodable source code by Serhiy Storchaka · 9 years ago
  26. ef2b2f4 Issue #25590: Make rlcompleter only call getattr() once per attribute by Martin Panter · 9 years ago
  27. fedcf94 Issue #22995: Default implementation of __reduce__ and __reduce_ex__ now by Serhiy Storchaka · 9 years ago
  28. 10aaca9 always set OP_NO_SSLv3 by default (closes #25530) by Benjamin Peterson · 9 years ago
  29. 59d451d fix memory leak in _get_crl_dp (closes #25569) by Benjamin Peterson · 9 years ago
  30. c54b8ce Issue #7759: Fixed the mhlib module on filesystems that doesn't support by Serhiy Storchaka · 9 years ago
  31. d0ee226 Added missed periods at the ends of sentences in Misc/NEWS. by Serhiy Storchaka · 9 years ago
  32. e192d0b Issue #7267: format(int, 'c') now raises OverflowError when the argument is not by Victor Stinner · 9 years ago
  33. da87e45 Issue #892902: Fixed pickling recursive objects. by Serhiy Storchaka · 9 years ago
  34. 43415ba Issue #18010: Fix pydoc GUI search to handle package exceptions by Martin Panter · 9 years ago
  35. c72e66a Issue #25523: Backported a-to-an corrections. by Serhiy Storchaka · 9 years ago
  36. 09ba984 always use os.urandom for the uuid4 algorithm (closes #25515) by Benjamin Peterson · 9 years ago
  37. fbe04b6 Issue #21827: Fixed textwrap.dedent() for the case when largest common by Serhiy Storchaka · 9 years ago
  38. 7427a79 Issue #21709: Fix the logging module to not depend upon __file__ being set by Gregory P. Smith · 9 years ago
  39. 77d12ec prevent unacceptable bases from becoming bases through multiple inheritance (#24806) by Benjamin Peterson · 9 years ago
  40. 51cd53e reinitialize an Event's Condition with a regular lock (closes #25319) by Benjamin Peterson · 9 years ago
  41. 1b6333a Issue #24820: Update IDLE NEWS items. by Terry Jan Reedy · 9 years ago
  42. 74c76c8 Issue #24657: Prevent CGIRequestHandler from collapsing the URL query by Martin Panter · 9 years ago
  43. cff22eb Issue #25232: Fix CGIRequestHandler's splitting of URL query by Martin Panter · 9 years ago
  44. e12f632 Issue #24848: Fixed bugs in UTF-7 decoding of misformed data: by Serhiy Storchaka · 9 years ago
  45. a87633e Issue #25003: os.urandom() doesn't use getentropy() on Solaris because by Victor Stinner · 9 years ago
  46. f522bbc Issue #22958: Constructor and update method of weakref.WeakValueDictionary by Serhiy Storchaka · 9 years ago
  47. cab4566 Issue #22609: Constructor and the update method of collections.UserDict now by Serhiy Storchaka · 9 years ago
  48. 6d49160 Remove indent in news item. Error when building 3.x docs. by Terry Jan Reedy · 9 years ago
  49. da10017 Add recent IDLE NEWS items. Move Build sectios down. by Terry Jan Reedy · 9 years ago
  50. a8041ae Issue #25203: Failed readline.set_completer_delims() no longer left the by Serhiy Storchaka · 9 years ago
  51. d2a4073 Issue #25135: Avoid possible reentrancy issues in deque_clear. by Raymond Hettinger · 9 years ago
  52. 044cde5 Issue #19143: platform module now reads Windows version from kernel32.dll to avoid compatibility shims. by Steve Dower · 9 years ago
  53. 13b21f8 Issue #16893: Add idlelib.help.copy_strip() to copy-rstrip Doc/.../idle.html. by Terry Jan Reedy · 9 years ago
  54. 4dd7887 Issue #24861: add Idle news items and correct previous errors. by Terry Jan Reedy · 9 years ago
  55. 0eb8f01 Add NEWS items for Idle. by Terry Jan Reedy · 9 years ago
  56. ab54ca7 Give proper credit for issue #24915 by Brett Cannon · 9 years ago
  57. 4ff151a Issue #24915: Make PGO builds support Clang and use the test suite for by Brett Cannon · 9 years ago
  58. 9a2326b Issue #24684: socket.socket.getaddrinfo() now calls by Victor Stinner · 9 years ago
  59. 677688b Issue #25022: Add NEWS, fix docs to not mention the old example. by Zachary Ware · 9 years ago
  60. fe45f65 Issue #24982: shutil.make_archive() with the "zip" format now adds entries by Serhiy Storchaka · 9 years ago
  61. b75a0e9 Issue #17849: Raise sensible exception for invalid HTTP tunnel response by Martin Panter · 9 years ago
  62. 23ae488 Issue #16180: Exit pdb if file has syntax error, instead of trapping user by Terry Jan Reedy · 9 years ago
  63. 1db43f9 Issue #24986: Allow building Python without external libraries on Windows by Zachary Ware · 9 years ago
  64. 7ab6cb4 Allow PCbuild\rt.bat to accept unlimited arguments for regrtest. by Zachary Ware · 9 years ago
  65. 6a31bb5 Issue #24952: Clarify default argument of stack_size() in threading, thread by Martin Panter · 9 years ago
  66. d951625 Merge 2.7 heads. by Robert Collins · 9 years ago
  67. 11ac1a8 Issue #22812: Fix unittest discovery examples. by Robert Collins · 9 years ago
  68. 5fa59bd Idle NEWS entries. by Terry Jan Reedy · 9 years ago
  69. 9168d06 #21167: Fix definition of NAN when ICC used without -fp-model strict. by R David Murray · 9 years ago
  70. 1687074 Fixed doubled spaces in Misc/NEWS. by Serhiy Storchaka · 9 years ago
  71. a4777f1 Issue #24751: When running regrtest with '-w', don't fail if re-run succeeds. by Zachary Ware · 9 years ago
  72. 937f2f7 Issue #20769: Improve reload() docs. Patch by Dorian Pula. by Robert Collins · 9 years ago
  73. 977be3e Issue #23652: Make the select module compile against LSB headers. by Zachary Ware · 9 years ago
  74. 3d731c5 Issue #15138: Speed up base64.urlsafe_b64* considerably (2.7 backport). by Guido van Rossum · 9 years ago
  75. f524799 Issue #23589: Remove duplicate sentence from the FAQ. Patch by Yongzhi Pan. by Robert Collins · 9 years ago
  76. e97944a Issue #23319: Fix ctypes.BigEndianStructure, swap correctly bytes. Patch by Victor Stinner · 9 years ago
  77. 2f2c829 Issue #23254: Document how to close the TCPServer listening socket. by Robert Collins · 9 years ago
  78. 581234e Issue #17527: Add PATCH to wsgiref.validator. Patch from Luca Sbardella. by Robert Collins · 9 years ago
  79. cf74c19 Issue #24613: Calling array.fromstring() with self is no longer allowed by Serhiy Storchaka · 9 years ago
  80. 455a2a3 proper overflow checks for mymemreplace (closes #24708) by Benjamin Peterson · 9 years ago
  81. 3b77d01 Issue #24620: Random.setstate() now validates the value of state last element. by Serhiy Storchaka · 9 years ago
  82. 04fac8a Issue #13938: 2to3 converts StringTypes to a tuple. Patch from Mark Hammond. by Robert Collins · 9 years ago
  83. 68773f3 Issue #24603: Update Windows build to use OpenSSL 1.0.2d by Zachary Ware · 9 years ago
  84. 4306063 Issue #24568: fix typo. by Raymond Hettinger · 9 years ago
  85. 4734372 Close #24508: Backport the 3.5 MSBuild project files. by Zachary Ware · 9 years ago
  86. 1485054 Issue #24634: Importing uuid should not try to load libc on Windows by Steve Dower · 9 years ago
  87. be8c6ae Issue #24611: Fixed compiling the posix module on non-Windows platforms by Serhiy Storchaka · 9 years ago
  88. 8de92c3 Corrected empty lines and removed BOM in Misc/NEWS. by Serhiy Storchaka · 9 years ago
  89. 7865f21 Issue #18684: Fixed reading out of the buffer in the re module. by Serhiy Storchaka · 9 years ago
  90. 518602a Issue #24259: tarfile now raises a ReadError if an archive is truncated inside a data segment. by Lars Gustäbel · 9 years ago
  91. 96ae7fa Merge heads by Benjamin Peterson · 9 years ago
  92. 3ce0b06 'free-after-use' is not a bug :) (closes #24568) by Benjamin Peterson · 9 years ago
  93. 14f233e Issue #24432: Update OS X 10.5+ installer builds to use OpenSSL 1.0.2c. by Ned Deily · 9 years ago
  94. 3dd3d7c Issue #24432: Update Windows builds to use OpenSSL 1.0.2c. by Steve Dower · 9 years ago
  95. d048003 Issue #24514: tarfile now tolerates number fields consisting of only whitespace. by Lars Gustäbel · 9 years ago
  96. ab76635 Issue #24467: Fixed possible buffer over-read in bytearray. The bytearray by Serhiy Storchaka · 9 years ago
  97. eabfe8c Issue #20387: Backport fix from Python 3.4 by Jason R. Coombs · 9 years ago
  98. 84af51d Issue #24456: Fixed possible buffer over-read in adpcm2lin() and lin2adpcm() by Serhiy Storchaka · 9 years ago
  99. 1c72acf ensure internal buffer is large enough for string after flushing (closes #24481) by Benjamin Peterson · 9 years ago
  100. 0d2fac1 Issue #24489: ensure a previously set C errno doesn't disturb cmath.polar(). by Antoine Pitrou · 9 years ago