1. 2674bc7 Issue #27998: Fixed bytes path support in os.scandir() on Windows. by Serhiy Storchaka · 8 years ago
  2. e4c222c merge 3.5 by Benjamin Peterson · 8 years ago
  3. 8f1cdc6 ensure read size is initialized by Benjamin Peterson · 8 years ago
  4. 43441c7 merge 3.5 by Benjamin Peterson · 8 years ago
  5. 3776836 do not leak buffer if mmap is not writable by Benjamin Peterson · 8 years ago
  6. 87845bc merge 3.5 by Benjamin Peterson · 8 years ago
  7. cd04db0 mmap: do all internal arithmetic with Py_ssize_t while being very careful about overflow by Benjamin Peterson · 8 years ago
  8. 312cef7 Issue #28217: Adds _testconsole module to test console input. Fixes some issues found by the tests. by Steve Dower · 8 years ago
  9. b364857 Issue #28295: Fixed the documentation and added tests for PyUnicode_AsUCS4(). by Serhiy Storchaka · 8 years ago
  10. cc16423 Issue #28295: Fixed the documentation and added tests for PyUnicode_AsUCS4(). by Serhiy Storchaka · 8 years ago
  11. 8f0f205 Issue #28322: Fixed possible crashes when unpickle itertools objects from by Serhiy Storchaka · 8 years ago
  12. 85c3f26 Issue #28322: Fixed possible crashes when unpickle itertools objects from by Serhiy Storchaka · 8 years ago
  13. 55c9239 Issue #28275: Merge bz2 fix from 3.5 into 3.6 by Martin Panter · 8 years ago
  14. 38317d3 Issue #28275: Clean up to avoid use-after-free after bzip decompress failure by Martin Panter · 8 years ago
  15. 84d8baa Fix xml.etree.ElementTree.Element.getiterator() by Victor Stinner · 8 years ago
  16. 3e7a3cb Issue #28148: Stop using localtime() and gmtime() in the time module. by Alexander Belopolsky · 8 years ago
  17. 9574e0a Issue #20947: Fixed a gcc warning with -Wstrict-overflow. by Serhiy Storchaka · 8 years ago
  18. 5ae4f49 Issue #20947: Fixed a gcc warning with -Wstrict-overflow. by Serhiy Storchaka · 8 years ago
  19. a12e784 Issue #28275: Fixed possible use adter free in LZMADecompressor.decompress(). by Serhiy Storchaka · 8 years ago
  20. c0b7037 Issue #28275: Fixed possible use adter free in LZMADecompressor.decompress(). by Serhiy Storchaka · 8 years ago
  21. 22805ca Issue #27897: Fixed possible crash in sqlite3.Connection.create_collation() by Serhiy Storchaka · 8 years ago
  22. 407ac47 Issue #27897: Fixed possible crash in sqlite3.Connection.create_collation() by Serhiy Storchaka · 8 years ago
  23. 9df89d0 Issue #28277: remove linefeed character from iomodule.h. Patch by Michael Felt by Christian Heimes · 8 years ago
  24. 1a63b9f Typo by Christian Heimes · 8 years ago
  25. a5d0765 Finish GC code for SSLSession and increase test coverage by Christian Heimes · 8 years ago
  26. 6f3f3e5 Increase buffer for readlink() in case OS will support longer names one day. by Christian Heimes · 8 years ago
  27. 3cb091e Increase buffer for readlink() in case OS will support longer names one day. by Christian Heimes · 8 years ago
  28. 0202c34 Add an extra byte for null in case we ever get very long unicode names. by Christian Heimes · 8 years ago
  29. 2f366ca Add an extra byte for null in case we ever get very long unicode names. by Christian Heimes · 8 years ago
  30. b00e00c Don't define PY_WITH_KECCAK by Christian Heimes · 8 years ago
  31. ec2319c Fix memleak in os.getrandom() by Victor Stinner · 8 years ago
  32. 8ac46c9 revert expat changes by Benjamin Peterson · 8 years ago
  33. e2e792d merge 3.5 (#28184) by Benjamin Peterson · 8 years ago
  34. 26c03bd Fix memory leak in path_converter() by Victor Stinner · 8 years ago
  35. ac965ca stop using Py_LL and Py_ULL by Benjamin Peterson · 8 years ago
  36. bf3c1c3 Issue #28075: Fix test_access_denied in Python 3.5 by Berker Peksag · 8 years ago
  37. 27f26ad Issue #28161: Opening CON for write access fails by Steve Dower · 8 years ago
  38. 313523c Issue #28192: Don't import readline in isolated mode by Steve Dower · 8 years ago
  39. 052e4f1 Issue #28075: Merge from 3.5 by Berker Peksag · 8 years ago
  40. 0b4dc48 Issue #28075: Check for ERROR_ACCESS_DENIED in Windows implementation of os.stat() by Berker Peksag · 8 years ago
  41. d508d00 Issue #28139: Merge indentation fixes from 3.5 into 3.6 by Martin Panter · 8 years ago
  42. 6d57fe1 Issue #28139: Fix messed up indentation by Martin Panter · 8 years ago
  43. 355bbb0 Issue #28145: Merge spelling fixes from 3.5 into 3.6 by Martin Panter · 8 years ago
  44. 2dc77f0 Issue #28145: Spelling fixes by Martin Panter · 8 years ago
  45. 3940499 Issue #28156: Export os.getpid() conditionally by Berker Peksag · 8 years ago
  46. 8181646 Issue #28114: Fix a crash in parse_envlist() when env contains byte strings by Berker Peksag · 8 years ago
  47. 6775231 Unicode 9.0.0 by Benjamin Peterson · 8 years ago
  48. 7ec6456 Issue #28153: Make kqueue()'s event filters optional by Berker Peksag · 8 years ago
  49. 62a1f02 Issue #27599: Fixed buffer overrun in binascii.b2a_qp() and binascii.a2b_qp(). by Serhiy Storchaka · 8 years ago
  50. e6265e9 Issue #27599: Fixed buffer overrun in binascii.b2a_qp() and binascii.a2b_qp(). by Serhiy Storchaka · 8 years ago
  51. 8cee103 Restrict name_length to NAME_MAXLEN in unicodedata_UCD_lookup() by Christian Heimes · 8 years ago
  52. 7ce2013 Restrict name_length to NAME_MAXLEN in unicodedata_UCD_lookup() by Christian Heimes · 8 years ago
  53. 37098cd more granular configure checks for clock_* functions (closes #28081) by Benjamin Peterson · 8 years ago
  54. 8ee9edb Issue #28131: Merge from 3.5 by Berker Peksag · 8 years ago
  55. 4aa74c4 Issue #28131: Fix a regression in zipimport's compile_source() by Berker Peksag · 8 years ago
  56. f6365e3 Issue #28188: Use PyMem_Calloc() to get rid of a type-limits warning and an extra memset() call in _ssl.c. by Christian Heimes · 8 years ago
  57. f051e43 Issue #28126: Replace Py_MEMCPY with memcpy(). Visual Studio can properly optimize memcpy(). by Christian Heimes · 8 years ago
  58. faf2cea Fix NULL check in sock_sendmsg_iovec. CID 1372885 by Christian Heimes · 8 years ago
  59. 410b988 Issue #27866: Fix refleak in cipher_to_dict() by Victor Stinner · 8 years ago
  60. 52d61e4 socket: Fix memory leak in sendmsg() and sendmsg_afalg() by Victor Stinner · 8 years ago
  61. 288b5bf Cleanup socketmodule.c by Victor Stinner · 8 years ago
  62. 8805717 Revert part of 3471a3515827 that caused a performance regression by Raymond Hettinger · 8 years ago
  63. 59da4b3 Issue #28037: Use sqlite3_get_autocommit() instead of setting Connection->inTransaction manually by Berker Peksag · 8 years ago
  64. 654a7bd Adds missing assert suppression. by Steve Dower · 8 years ago
  65. 18f3a9b Closes #25283: Make tm_gmtoff and tm_zone available on all platforms. by Alexander Belopolsky · 8 years ago
  66. 5fe668c Issue #28085: Add PROTOCOL_TLS_CLIENT and PROTOCOL_TLS_SERVER for SSLContext by Christian Heimes · 8 years ago
  67. ec406fe Issue #27810: Regenerate Argument Clinic. by Serhiy Storchaka · 8 years ago
  68. a6d75fd Issue 24454: Removed unused match_getitem_doc. by Eric V. Smith · 8 years ago
  69. b569086 Issue 24454: Added whatsnew entry, removed __getitem__ from match_methods. Thanks Serhiy Storchaka. by Eric V. Smith · 8 years ago
  70. 605bdae Issue 24454: Improve the usability of the re match object named group API by Eric V. Smith · 8 years ago
  71. 9af13ca Issue #28036: Remove unused pysqlite_flush_statement_cache function by Berker Peksag · 8 years ago
  72. 8be1740 Use uint16_t instead of short in audioop. by Serhiy Storchaka · 8 years ago
  73. ab994ed Issue #10740: sqlite3 no longer implicitly commit an open transaction before DDL statements by Berker Peksag · 8 years ago
  74. 99a6570 Issue #19500: Add client-side SSL session resumption to the ssl module. by Christian Heimes · 8 years ago
  75. 130bbe5 #28067: Fixed another typo. by Alexander Belopolsky · 8 years ago
  76. 358cfd4 Issue 28043: SSLContext has improved default settings by Christian Heimes · 8 years ago
  77. abd143b #28067: Fixed a typo. by Alexander Belopolsky · 8 years ago
  78. 6d88fa5 Closes #28067: Do not call localtime (gmtime) in datetime module. by Alexander Belopolsky · 8 years ago
  79. 457fc9a Issue #27137: align Python & C implementations of functools.partial by Nick Coghlan · 8 years ago
  80. 8f9cafa Issue #28019: itertools.count() no longer rounds non-integer step in range by Serhiy Storchaka · 8 years ago
  81. 8ddcf3a Issue #28019: itertools.count() no longer rounds non-integer step in range by Serhiy Storchaka · 8 years ago
  82. fef7e94 Don't run garbage collection on interpreter exit if it was explicitly disabled by Łukasz Langa · 8 years ago
  83. 37e4ef7 Issue #27810: Rerun Argument Clinic on all modules by Victor Stinner · 8 years ago
  84. dec2df3 fix dummy macro by Benjamin Peterson · 8 years ago
  85. a785c87 DTrace support: function calls, GC activity, line execution by Łukasz Langa · 8 years ago
  86. ff70fc2 Issue #25758: Prevents zipimport from unnecessarily encoding a filename (patch by Eryk Sun) by Steve Dower · 8 years ago
  87. 8dcc48e Issue #25758: Prevents zipimport from unnecessarily encoding a filename (patch by Eryk Sun) by Steve Dower · 8 years ago
  88. a721aba Issue #26331: Implement the parsing part of PEP 515. by Brett Cannon · 8 years ago
  89. 7d895ac remove --with(out)-signal-module, since the signal module is non-optional by Benjamin Peterson · 8 years ago
  90. 6230aaf Issue #27781: Fixes uninitialized fd when !MS_WINDOWS and !HAVE_OPENAT by Steve Dower · 8 years ago
  91. eb63645 Issue #28003: Implement PEP 525 -- Asynchronous Generators. by Yury Selivanov · 8 years ago
  92. f8cb8a1 Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations. by Yury Selivanov · 8 years ago
  93. 0b9d64e Issue 18550: Check return value of ioctl() / fnctl() in internal_setblocking by Christian Heimes · 8 years ago
  94. ff4fddd Add NULL checks to the initializer of the locale module by Christian Heimes · 8 years ago
  95. bb0b0d9 replace PyInt16 with int16_t by Benjamin Peterson · 8 years ago
  96. 7a5457b Add error checking to PyInit_pyexpact by Christian Heimes · 8 years ago
  97. 6782b14 Use PyModule_AddIntMacro() in signal module by Christian Heimes · 8 years ago
  98. 2752707 Check return value of PyList_Append() in Py_Main(). CID 1353200 by Christian Heimes · 8 years ago
  99. 0be894b Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Martin Panter · 8 years ago
  100. be8da9c Issue #27570: Avoid zero-length memcpy() calls with null source pointers by Martin Panter · 8 years ago