1. 6702804 Issue #15560: Fix building _sqlite3 extension on OS X with an SDK. by Ned Deily · 12 years ago
  2. 8ba844a Issue #13052: Fix IDLE crashing when replace string in Search/Replace dialog ended with '\'. by Andrew Svetlov · 12 years ago
  3. d4e58dc Closes #15469: Correct __sizeof__ support for deque by Jesus Cea · 12 years ago
  4. 3e3192d Closes #15512: Correct __sizeof__ support for parser by Jesus Cea · 12 years ago
  5. 1fa9f7b Issue #15538: Fix compilation of the getnameinfo() / getaddrinfo() emulation code. by Antoine Pitrou · 12 years ago
  6. 33f8c3a Issue #8847: Disable COMDAT folding in Windows PGO builds. by Martin v. Löwis · 12 years ago
  7. 8a15c37 Issue #9803: Don't close IDLE on saving if breakpoint is open. by Andrew Svetlov · 12 years ago
  8. 2d96848 Issue #12288: Consider '0' and '0.0' as valid initialvalue for tkinter SimpleDialog. by Andrew Svetlov · 12 years ago
  9. d8ec464 Issue #14018: Fix OS X Tcl/Tk framework checking when using OS X SDKs. by Ned Deily · 12 years ago
  10. baee34c Issue #15489: Add a __sizeof__ implementation for BytesIO objects. by Antoine Pitrou · 12 years ago
  11. bff5df0 Issue #15487: Add a __sizeof__ implementation for buffered I/O objects. by Antoine Pitrou · 12 years ago
  12. c02e1e6 Issue #15467: Move helpers for __sizeof__ tests into test_support. by Martin v. Löwis · 12 years ago
  13. e4b9938 Issue #6056: Make multiprocessing use setblocking(True) on the sockets it uses. by Richard Oudkerk · 12 years ago
  14. 15fc220 Issue #15041: Update "see also" list in tkinter documentation. by Andrew Svetlov · 12 years ago
  15. 7009845 #15232: make NEWS entry more accurate. by R David Murray · 12 years ago
  16. 87c5b94 Issue #15402: Add a __sizeof__ method to struct.Struct. by Meador Inge · 12 years ago
  17. 0c472c3 Issue #15250: Document that filecmp.dircmp compares files shallowly. Patch contributed by Chris Jerdonek. by Senthil Kumaran · 12 years ago
  18. 0f111c1 #15232: correctly mangle From lines in MIME preamble and epilogue by R David Murray · 12 years ago
  19. 68f555c #13922: argparse no longer incorrectly strips '--' after the first one. by R David Murray · 12 years ago
  20. 056c31f #12353: argparse now correctly handles null argument values. by R David Murray · 12 years ago
  21. d33a9be Fix typo introduced in 79d54fba49b3. by Georg Brandl · 12 years ago
  22. 715a63b Issue #14579: Fix error handling bug in the utf-16 decoder. by Antoine Pitrou · 12 years ago
  23. 25be3f6 Issue #6493: Fix handling of c_uint32 bitfields with width of 32 on Windows. by Meador Inge · 12 years ago
  24. 6642d1f Issue #15368: make bytecode generation deterministic. by Meador Inge · 12 years ago
  25. e0c2220 Fixes Issue #14635: telnetlib will use poll() rather than select() when possible by Gregory P. Smith · 12 years ago
  26. 45ed012 Issue #13557: Clarify effect of giving two different namespaces to exec or by Terry Jan Reedy · 12 years ago
  27. 5d60e56 revert the changes done in d931a3b64fd6 - buildbot failure. by Senthil Kumaran · 12 years ago
  28. 01fe5fa Fix issue14826 - make urllib.request.Request quoted url consistent with URLOpener open method. by Senthil Kumaran · 12 years ago
  29. c2ec992 Issue #15247: FileIO now raises an error when given a file descriptor pointing to a directory. by Antoine Pitrou · 12 years ago
  30. 3b30b19 Fix closes issue # 15033 - Return the proper exitcode for failure when modules are invoked using -m switch. Patch contributed by Jeff Knupp by Senthil Kumaran · 12 years ago
  31. e5567cc Create ~/.pypirc securely (#13512). by Éric Araujo · 12 years ago
  32. 3cf202e Ignore .nfs* files in distutils (#7719). by Éric Araujo · 12 years ago
  33. e0afb72 Closes #14591: Random.jumpahead could produce an invalid MT state on 64-bit machines. by Mark Dickinson · 12 years ago
  34. d07de40 #5346: Preserve permissions of mbox, MMDF and Babyl mailbox files on flush() by Petri Lehtinen · 12 years ago
  35. d958cc9 Issue #15219: Fix a reference leak when hashlib.new() is called with by Amaury Forgeot d'Arc · 12 years ago
  36. 45f0d98 #9559: Append data to single-file mailbox files if messages are only added by Petri Lehtinen · 12 years ago
  37. b2ac4d6 Fixes issue #12268 for file readline, readlines and read() and readinto methods. by Gregory P. Smith · 12 years ago
  38. e99d3a1 Issue #14653: email.utils.mktime_tz() no longer relies on system by Alexander Belopolsky · 12 years ago
  39. 9bd4bf2 #10053: Don't close FDs when FileIO.__init__ fails by Hynek Schlawack · 12 years ago
  40. 4215d27 Issue #15101: Make pool finalizer avoid joining current thread by Richard Oudkerk · 12 years ago
  41. 48ee690 Fix NEWS entry for #15036 by Petri Lehtinen · 12 years ago
  42. f637920 #14840: Add a bit on the difference between tuples and lists. Initial patch by Zachary Ware. by Ezio Melotti · 12 years ago
  43. a093312 Issue #15043: skip test_gdb if the custom hooks can't be loaded (backport from 3.x) by Nick Coghlan · 12 years ago
  44. 43f42fc Issue #15054: Fix incorrect tokenization of 'b' and 'br' string literals. by Meador Inge · 12 years ago
  45. 7cf6699 #15036: Make a repeated changes and flushes work with single-file mailboxes by Petri Lehtinen · 12 years ago
  46. 926f58d Issue #10133: Make multiprocessing deallocate buffer if socket read fails. by Richard Oudkerk · 12 years ago
  47. 5525eb7 NEWS fixes by Terry Jan Reedy · 12 years ago
  48. 2182e05 Issue #13854: Properly handle non-integer, non-string arg to SystemExit by Richard Oudkerk · 12 years ago
  49. d44a4a2 Issue #12157: pool.map() does not handle empty iterable correctly by Richard Oudkerk · 12 years ago
  50. 5e247b7 Issue #14962: Update text coloring in IDLE shell window after changing by Ned Deily · 12 years ago
  51. 7148984 Issue #10997: Prevent a duplicate entry in IDLE's "Recent Files" menu. by Ned Deily · 12 years ago
  52. ff0e22b Issue #14775: Fix a potential quadratic dict build-up due to the garbage collector repeatedly trying to untrack dicts. by Antoine Pitrou · 12 years ago
  53. fe7aa49 Issue #9041: raised exception is misleading by Meador Inge · 12 years ago
  54. d9d276b Issue12510: Attempting to get invalid tooltip no longer closes Idle. by Terry Jan Reedy · 12 years ago
  55. eaa7e78 Issue #10365: File open dialog now works instead of crashing by Terry Jan Reedy · 12 years ago
  56. 42f7b7e Issue #14876: Use user-selected font for highlight configuration. by Terry Jan Reedy · 12 years ago
  57. 37484dc Issue #14036: return None when port in urlparse cross 65535 by Senthil Kumaran · 12 years ago
  58. cd8799f Issue #14888: Fix misbehaviour of the _md5 module when called on data larger than 2**32 bytes. by Antoine Pitrou · 12 years ago
  59. ed8cf7a #14875: Use float('inf') instead of float('1e66666') in the json module. by Ezio Melotti · 12 years ago
  60. ed11a5d Issue #8767: Restore building with --disable-unicode. by Martin v. Löwis · 12 years ago
  61. 77e77a1 Issue #14572: Prevent build failures with pre-3.5.0 versions of by Ned Deily · 12 years ago
  62. f439a36 Issue #14426: Correct the Date format in Expires attribute of Set-Cookie. Patch by Federico Reghenzani and Müte Invert by Senthil Kumaran · 12 years ago
  63. 5f39706 #14494: Document that absolute imports became default in 3.0 instead of 2.7. by Petri Lehtinen · 12 years ago
  64. 6d9c1b1 #14072: Fix parsing of tel URIs in urlparse by making the check for ports stricter. by Ezio Melotti · 12 years ago
  65. 618802d Fix Issue14721: Send Content-length: 0 for empty body () in the http.request by Senthil Kumaran · 12 years ago
  66. ea24dda Issue9374 - Generic parsing of query and fragment portion of urls for any scheme by Senthil Kumaran · 12 years ago
  67. 280e9f7 #14798: pyclbr now raises ImportError instead of KeyError for missing packages by Petri Lehtinen · 12 years ago
  68. 6949392 #14832: 'first' now really refers to first arg in unittest assertItemsEqual by R David Murray · 12 years ago
  69. 38fbd79 Issue #14829: Fix bisect issues under 64-bit Windows. by Antoine Pitrou · 12 years ago
  70. 724a55c Issue #14777: In an X11 windowing environment, tkinter may return by Ned Deily · 12 years ago
  71. fd0afed Upgrade openssl to 0.9.8x. by Martin v. Löwis · 12 years ago
  72. 6a2a6c2 Issue #12541: Be lenient with quotes around Realm field with HTTP Basic Authentation in urllib2. by Senthil Kumaran · 12 years ago
  73. acdc56d Issue #14662: Prevent shutil failures on OS X when destination does not by Ned Deily · 12 years ago
  74. b79a01f Update ACKS. by Antoine Pitrou · 12 years ago
  75. c2b714c Issue #14157: Fix time.strptime failing without a year on February 29th. by Antoine Pitrou · 12 years ago
  76. f2011e3 Closes #14768: os.path.expanduser('~/a') doesn't works correctly when HOME is '/' by Jesus Cea · 12 years ago
  77. 284fa08 Issue #14761: Fix potential leak on an error case in the import machinery. by Antoine Pitrou · 12 years ago
  78. e48daea #14034: added the argparse tutorial. Patch by Tshepang Lekhonkhobe. by Ezio Melotti · 12 years ago
  79. 042c47b fix calling the classmethod descriptor directly (closes #14699) by Benjamin Peterson · 12 years ago
  80. 7f6d4e1 issue13183 - Fix pdb skipping frames after hitting a breakpoint and running step. Patch by Xavier de Gaye by Senthil Kumaran · 12 years ago
  81. 3815316 Issue #14664: It is now possible to use @unittest.skip{If,Unless} on a test class that doesn't inherit from TestCase (i.e. a mixin). by Antoine Pitrou · 12 years ago
  82. 231d474 Issue #14160: TarFile.extractfile() failed to resolve symbolic links when by Lars Gustäbel · 12 years ago
  83. d157a4c don't use a slot wrapper from a different special method (closes #14658) by Benjamin Peterson · 12 years ago
  84. c313b1d #14638: pydoc now treats non-str __name__ as None instead of raising by R David Murray · 12 years ago
  85. 4c20c4e news for issue13684 by Senthil Kumaran · 12 years ago
  86. eda1959 add Mark Shannon by Benjamin Peterson · 12 years ago
  87. 52849bf Issue #14308: Fix an exception when a "dummy" thread is in the threading module's active list after a fork(). by Antoine Pitrou · 12 years ago
  88. c45868e #14538: HTMLParser can now parse correctly start tags that contain a bare /. by Ezio Melotti · 12 years ago
  89. 7660555 SETUP_WITH acts like SETUP_FINALLY for the purposes of setting f_lineno (closes #14612) by Benjamin Peterson · 12 years ago
  90. 7e9c9d5 Issue #14452: remove BOM insertion code. by Vinay Sajip · 12 years ago
  91. 9945a64 Issue #14589: Update certificate chain for sha256.tbs-internet.com, fixing a test failure in test_ssl. by Antoine Pitrou · 12 years ago
  92. 0407e96 Issue 13496: Fix bisect.bisect overflow bug for large collections. by Mark Dickinson · 12 years ago
  93. 9c0baf7 Issue #13889: On MSVC builds, set FPU control word at runtime for all string <-> float conversions. Patch by Samuel Iseli and Stefan Krah. by Mark Dickinson · 12 years ago
  94. 9955ad4 #14399: corrected news item by R David Murray · 12 years ago
  95. 3f4ccba #14399: zipfile now correctly handles comments added to empty zipfiles. by R David Murray · 12 years ago
  96. 0d3db3a Issue #14557: Fix extensions build on HP-UX. Patch by Adi Roiban. by Charles-François Natali · 12 years ago
  97. ad6b3f5 merge 2.7.3 release branch by Benjamin Peterson · 12 years ago
  98. e95a8f6 bump to 2.7.3 final by Benjamin Peterson · 12 years ago
  99. fa1d841 Issue #7978: socketserver now restarts the select() call when EINTR is returned. by Antoine Pitrou · 12 years ago
  100. 02a3801 Issue #14505: Fix file descriptor leak when deallocating file objects created with PyFile_FromString(). by Antoine Pitrou · 12 years ago