1. e45b7c0 Issue #18287: PyType_Ready() now checks that tp_name is not NULL. by Serhiy Storchaka · 8 years ago
  2. de0574b Issue #18287: PyType_Ready() now checks that tp_name is not NULL. by Serhiy Storchaka · 8 years ago
  3. b4b55eb Merge with 3.5 by Terry Jan Reedy · 8 years ago
  4. 30eee4d Issue #28815: Change '?' to '<module>' in some doc examples. by Terry Jan Reedy · 8 years ago
  5. 6c58c34 IDLE NEWS item and ack. by Terry Jan Reedy · 8 years ago
  6. 3e7a3cb Issue #28148: Stop using localtime() and gmtime() in the time module. by Alexander Belopolsky · 8 years ago
  7. 6997946 Issue #28203: Merge from 3.5 by Mark Dickinson · 8 years ago
  8. 613f8e5 Issue #28203: Fix incorrect type in error message from complex(1.0, {2:3}). Patch by Soumya Sharma. by Mark Dickinson · 8 years ago
  9. 3dad1a5 Merge 3.5 - Issue #15308: Add 'interrupt execution' (^C) to Shell menu. by Terry Jan Reedy · 8 years ago
  10. a785c87 DTrace support: function calls, GC activity, line execution by Łukasz Langa · 8 years ago
  11. 1319236 Merge: #14977: Make mailcap respect the order of the lines in the mailcap file. by R David Murray · 8 years ago
  12. 347dc95 #14977: Make mailcap respect the order of the lines in the mailcap file. by R David Murray · 8 years ago
  13. c45599d Issue #19489: Merge with 3.5 by Zachary Ware · 8 years ago
  14. 9b32bda Issue #19489: Add NEWS and ACKS by Zachary Ware · 8 years ago
  15. f530738 Remove duplicate entry for Ivan L. by Guido van Rossum · 8 years ago
  16. f8cb8a1 Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations. by Yury Selivanov · 8 years ago
  17. 32d3742 [backport to 3.5] - issue26896 - Disambiguate uses of "importer" with "finder". by Senthil Kumaran · 8 years ago
  18. 6a137e8 add recipes for pseudo-valueless enums by Ethan Furman · 8 years ago
  19. e02bfd0 Add Francisco Couzo to Misc/ACKS (for issue #27427 patch). by Mark Dickinson · 8 years ago
  20. 7c4e409 Issue #11734: Add support for IEEE 754 half-precision floats to the struct module. Original patch by Eli Stevens. by Mark Dickinson · 8 years ago
  21. c787646 Issue #6057: Merge from 3.5 by Berker Peksag · 8 years ago
  22. ed789f9 Issue #6057: Document exceptions in sqlite3 module by Berker Peksag · 8 years ago
  23. 3c0d0ba Issue #12319: Support for chunked encoding of HTTP request bodies by Martin Panter · 8 years ago
  24. 0add84b Issue #27539: Merge from 3.5. by Mark Dickinson · 8 years ago
  25. 8447965 Issue #27539: Fix unnormalised Fraction.__pow__ result for negative exponent and base. Thanks Vedran Čačić. by Mark Dickinson · 8 years ago
  26. cbcd221 Merge #27782 fix from 3.5 by Nick Coghlan · 8 years ago
  27. 8682f57 Issue #27782: Fix m_methods handling in multiphase init by Nick Coghlan · 8 years ago
  28. c199603 Merge: #2466: ismount now recognizes mount points user can't access. by R David Murray · 8 years ago
  29. 750018b #2466: ismount now recognizes mount points user can't access. by R David Murray · 8 years ago
  30. cde03fa [merge from 3.5] - Prevent HTTPoxy attack (CVE-2016-1000110) by Senthil Kumaran · 8 years ago
  31. 3a32bdf Issue #27453: CPP invocation in configure must use CPPFLAGS. by Xavier de Gaye · 8 years ago
  32. d78448e Issue #27366: Implement PEP 487 by Nick Coghlan · 8 years ago
  33. 4b53359 Issue #27490: Merge pgen cross-compile logic from 3.5 by Martin Panter · 8 years ago
  34. eac67be Issue #27490: Do not build pgen when cross-compiling by Martin Panter · 8 years ago
  35. de85ed6 Closes #25393: Merge with 3.5 by Zachary Ware · 8 years ago
  36. 48e3f98 Issue #25393: Fix probable copy/paste error in resource docs by Zachary Ware · 8 years ago
  37. 896e87a Merge for #26844 by Brett Cannon · 8 years ago
  38. f76457e Issue #26844: Fix imp.find_module() to have the exception related to by Brett Cannon · 8 years ago
  39. fdcdd9e Issue #26896: Disambiguate uses of "importer" with "finder". by Brett Cannon · 8 years ago
  40. 15552c3 Issue #27285: Document the deprecation of the pyvenv script. by Brett Cannon · 8 years ago
  41. ea93ac0 Issue #26536: socket.ioctl now supports SIO_LOOPBACK_FAST_PATH. Patch by Daniel Stokes. by Steve Dower · 8 years ago
  42. cefa917 Issue #27238: Got rid of bare excepts in the turtle module. Original patch by Serhiy Storchaka · 8 years ago
  43. e0b70cd Issue #16864: Cursor.lastrowid now supports REPLACE statement by Berker Peksag · 8 years ago
  44. 34ad2ef Merge 3.5, issue #14209 by Łukasz Langa · 8 years ago
  45. 0d18c15 Issue #14209: pkgutil.iter_zipimport_modules ignores the prefix for packages by Łukasz Langa · 8 years ago
  46. 5135e9e Merge 3.5, issue #27194 by Łukasz Langa · 8 years ago
  47. e7f2748 Issue #27194: superfluous truncate calls in tarfile.py slow down extraction by Łukasz Langa · 8 years ago
  48. 4da945f Merge Issue #22558. by Terry Jan Reedy · 8 years ago
  49. fa089b9 Issue #22558: Add remaining doc links to source code for Python-coded modules. by Terry Jan Reedy · 8 years ago
  50. 40de69a Issue #25738: Merge HTTP server from 3.5 by Martin Panter · 8 years ago
  51. e42e129 Issue #25738: Don’t send message body for 205 Reset Content by Martin Panter · 8 years ago
  52. 9ff9cbd Merge 3.5 (os.urandom) by Victor Stinner · 8 years ago
  53. dddf484 os.urandom() doesn't block on Linux anymore by Victor Stinner · 8 years ago
  54. b11c744 add Dusty Phillips to ACKS by Ethan Furman · 8 years ago
  55. b4b966e Issue #19611: handle implicit parameters in inspect.signature by Nick Coghlan · 8 years ago
  56. d2367c6 Clean up urlopen doc string. by R David Murray · 8 years ago
  57. 13ee7d1 Merge: #16484: Fix pydoc doc links to modules whose names are mixed case. by R David Murray · 8 years ago
  58. ead9bfc #16484: Fix pydoc doc links to modules whose names are mixed case. by R David Murray · 8 years ago
  59. 3bad04c Merge: #26829: Clarify that namespace is copied to a new __dict__ in instance creation. by R David Murray · 8 years ago
  60. dd4fcf5 #26829: Clarify that namespace is copied to a new __dict__ in instance creation. by R David Murray · 8 years ago
  61. 1b50c4d Merge: #27185: move test_pep292 into test_string. by R David Murray · 8 years ago
  62. a32c738 #27185: move test_pep292 into test_string. by R David Murray · 8 years ago
  63. 0d20189 Merge: #20973: add total ordering tests for ipaddress by R David Murray · 8 years ago
  64. 947ff38 #20973: add total ordering tests for ipaddress by R David Murray · 8 years ago
  65. 672866d Issue 25926: Clarify that the pure python equivalents are only approximate. by Raymond Hettinger · 8 years ago
  66. 819581b Issue 25926: Clarify that the pure python equivalents are only approximate. by Raymond Hettinger · 8 years ago
  67. 4a3443b Merge 3.5 (issue #27057) by Victor Stinner · 8 years ago
  68. 3116cc4 Fix os.set_inheritable() on Android by Victor Stinner · 8 years ago
  69. c85dd85 Issue #26807: mock_open 'files' no longer error on readline at end of file. by Robert Collins · 8 years ago
  70. 9549a3e Issue #26807: mock_open 'files' no longer error on readline at end of file. by Robert Collins · 8 years ago
  71. f0dbf7a Issue #26870: Add readline.set_auto_history(), originally by Tyler Crompton by Martin Panter · 8 years ago
  72. b275210 Issue #25788: fileinput.hook_encoded() now supports an "errors" argument by Serhiy Storchaka · 8 years ago
  73. 0996fa3 merge 3.5 by Senthil Kumaran · 8 years ago
  74. a7c0ff2 Issue #26804: urllib.request will prefer lower_case proxy environment variables by Senthil Kumaran · 8 years ago
  75. c88390f Merge 3.5: Issue #26799 by Victor Stinner · 8 years ago
  76. 4e75ca8 python-gdb.py: get C types at runtime by Victor Stinner · 8 years ago
  77. a2bf306 Issue #21668: Add also Chi Hsuan Yen to Misc/ACKS by Victor Stinner · 8 years ago
  78. 5bfe0da Merge 3.5: issue #26801 by Victor Stinner · 8 years ago
  79. 119ebb7 Fix shutil.get_terminal_size() error handling by Victor Stinner · 8 years ago
  80. d77133b Issue #26717: Merge wsgiref fix from 3.5 by Martin Panter · 8 years ago
  81. 50dd1f7 Issue #26717: Stop encoding Latin-1-ized WSGI paths with UTF-8 by Martin Panter · 8 years ago
  82. 5f0507d Issue #26587: Allow .pth files to specify file paths as well as directories. by Brett Cannon · 8 years ago
  83. a350600 Issue #23735: Merge Readline resize handling from 3.5 by Martin Panter · 8 years ago
  84. 5dbbf1a Issue #23735: Add SIGWINCH handler for Readline 6.3+ support, by Eric Price by Martin Panter · 8 years ago
  85. fac3956 Optimize bytes.replace(b'', b'.') by Victor Stinner · 8 years ago
  86. 6840632 #26250: merge with 3.5. by Ezio Melotti · 8 years ago
  87. 62564db #26250: document the sqlite3.Cursor.connection attribute. Initial patches by Aviv Palivoda and Varpu Rantala. by Ezio Melotti · 8 years ago
  88. 32cba67 Merge for issue #26271 by Brett Cannon · 8 years ago
  89. e4044bf Issue #26271: Fix the Freeze tool to use variables passed in from the by Brett Cannon · 8 years ago
  90. bfef0be #25320: Handle sockets in directories unittest discovery is scanning. by Robert Collins · 8 years ago
  91. ecd5383 #25320: Handle sockets in directories unittest discovery is scanning. by Robert Collins · 8 years ago
  92. 4c9375b #24918: merge with 3.5. by Ezio Melotti · 8 years ago
  93. f2b9a39 #24918: fix CSS for code blocks when a side box is present. Patch by Manvi B. by Ezio Melotti · 8 years ago
  94. 0ce835f #25687: merge with 3.5. by Ezio Melotti · 8 years ago
  95. 8dea74f #25687: clarify that errors in tearDown increase the total number of reported errors. Initial patch by HyeSoo Park. by Ezio Melotti · 8 years ago
  96. 8a7240e Issue #23718: Fixed parsing time in week 0 before Jan 1. Original patch by by Serhiy Storchaka · 8 years ago
  97. 2c2a4e6 Add Mock.assert_called() by Victor Stinner · 8 years ago
  98. b9f3114 Issue #21042: Return full path in ctypes.util.find_library() on Linux by Martin Panter · 8 years ago
  99. 8cd8883 Issue #26505: merge from 3.5 by Ned Deily · 8 years ago
  100. adbf8ce Issue #26505: Fix typos in getaddrinfo license text. Patch by Alex Willmer. by Ned Deily · 8 years ago