1. 6adb223 Issue #28075: Merge from 3.6 by Berker Peksag · 8 years ago
  2. 052e4f1 Issue #28075: Merge from 3.5 by Berker Peksag · 8 years ago
  3. 0b4dc48 Issue #28075: Check for ERROR_ACCESS_DENIED in Windows implementation of os.stat() by Berker Peksag · 8 years ago
  4. 369052b Issue #28139: Merge indentation fixes from 3.6 by Martin Panter · 8 years ago
  5. d508d00 Issue #28139: Merge indentation fixes from 3.5 into 3.6 by Martin Panter · 8 years ago
  6. f40d4dd Closes #27979: Remove bundled copy of libffi by Zachary Ware · 8 years ago
  7. 6d57fe1 Issue #28139: Fix messed up indentation by Martin Panter · 8 years ago
  8. 355bbb0 Issue #28145: Merge spelling fixes from 3.5 into 3.6 by Martin Panter · 8 years ago
  9. 2dc77f0 Issue #28145: Spelling fixes by Martin Panter · 8 years ago
  10. 3940499 Issue #28156: Export os.getpid() conditionally by Berker Peksag · 8 years ago
  11. 8181646 Issue #28114: Fix a crash in parse_envlist() when env contains byte strings by Berker Peksag · 8 years ago
  12. 6775231 Unicode 9.0.0 by Benjamin Peterson · 8 years ago
  13. 7ec6456 Issue #28153: Make kqueue()'s event filters optional by Berker Peksag · 8 years ago
  14. 62a1f02 Issue #27599: Fixed buffer overrun in binascii.b2a_qp() and binascii.a2b_qp(). by Serhiy Storchaka · 8 years ago
  15. e6265e9 Issue #27599: Fixed buffer overrun in binascii.b2a_qp() and binascii.a2b_qp(). by Serhiy Storchaka · 8 years ago
  16. 8cee103 Restrict name_length to NAME_MAXLEN in unicodedata_UCD_lookup() by Christian Heimes · 8 years ago
  17. 7ce2013 Restrict name_length to NAME_MAXLEN in unicodedata_UCD_lookup() by Christian Heimes · 8 years ago
  18. 37098cd more granular configure checks for clock_* functions (closes #28081) by Benjamin Peterson · 8 years ago
  19. 8ee9edb Issue #28131: Merge from 3.5 by Berker Peksag · 8 years ago
  20. 4aa74c4 Issue #28131: Fix a regression in zipimport's compile_source() by Berker Peksag · 8 years ago
  21. 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
  22. f051e43 Issue #28126: Replace Py_MEMCPY with memcpy(). Visual Studio can properly optimize memcpy(). by Christian Heimes · 8 years ago
  23. faf2cea Fix NULL check in sock_sendmsg_iovec. CID 1372885 by Christian Heimes · 8 years ago
  24. 410b988 Issue #27866: Fix refleak in cipher_to_dict() by Victor Stinner · 8 years ago
  25. 52d61e4 socket: Fix memory leak in sendmsg() and sendmsg_afalg() by Victor Stinner · 8 years ago
  26. 288b5bf Cleanup socketmodule.c by Victor Stinner · 8 years ago
  27. 8805717 Revert part of 3471a3515827 that caused a performance regression by Raymond Hettinger · 8 years ago
  28. 59da4b3 Issue #28037: Use sqlite3_get_autocommit() instead of setting Connection->inTransaction manually by Berker Peksag · 8 years ago
  29. 654a7bd Adds missing assert suppression. by Steve Dower · 8 years ago
  30. 18f3a9b Closes #25283: Make tm_gmtoff and tm_zone available on all platforms. by Alexander Belopolsky · 8 years ago
  31. 5fe668c Issue #28085: Add PROTOCOL_TLS_CLIENT and PROTOCOL_TLS_SERVER for SSLContext by Christian Heimes · 8 years ago
  32. ec406fe Issue #27810: Regenerate Argument Clinic. by Serhiy Storchaka · 8 years ago
  33. a6d75fd Issue 24454: Removed unused match_getitem_doc. by Eric V. Smith · 8 years ago
  34. b569086 Issue 24454: Added whatsnew entry, removed __getitem__ from match_methods. Thanks Serhiy Storchaka. by Eric V. Smith · 8 years ago
  35. 605bdae Issue 24454: Improve the usability of the re match object named group API by Eric V. Smith · 8 years ago
  36. 9af13ca Issue #28036: Remove unused pysqlite_flush_statement_cache function by Berker Peksag · 8 years ago
  37. 8be1740 Use uint16_t instead of short in audioop. by Serhiy Storchaka · 8 years ago
  38. ab994ed Issue #10740: sqlite3 no longer implicitly commit an open transaction before DDL statements by Berker Peksag · 8 years ago
  39. 99a6570 Issue #19500: Add client-side SSL session resumption to the ssl module. by Christian Heimes · 8 years ago
  40. 130bbe5 #28067: Fixed another typo. by Alexander Belopolsky · 8 years ago
  41. 358cfd4 Issue 28043: SSLContext has improved default settings by Christian Heimes · 8 years ago
  42. abd143b #28067: Fixed a typo. by Alexander Belopolsky · 8 years ago
  43. 6d88fa5 Closes #28067: Do not call localtime (gmtime) in datetime module. by Alexander Belopolsky · 8 years ago
  44. 457fc9a Issue #27137: align Python & C implementations of functools.partial by Nick Coghlan · 8 years ago
  45. 8f9cafa Issue #28019: itertools.count() no longer rounds non-integer step in range by Serhiy Storchaka · 8 years ago
  46. 8ddcf3a Issue #28019: itertools.count() no longer rounds non-integer step in range by Serhiy Storchaka · 8 years ago
  47. fef7e94 Don't run garbage collection on interpreter exit if it was explicitly disabled by Łukasz Langa · 8 years ago
  48. 37e4ef7 Issue #27810: Rerun Argument Clinic on all modules by Victor Stinner · 8 years ago
  49. dec2df3 fix dummy macro by Benjamin Peterson · 8 years ago
  50. a785c87 DTrace support: function calls, GC activity, line execution by Łukasz Langa · 8 years ago
  51. ff70fc2 Issue #25758: Prevents zipimport from unnecessarily encoding a filename (patch by Eryk Sun) by Steve Dower · 8 years ago
  52. 8dcc48e Issue #25758: Prevents zipimport from unnecessarily encoding a filename (patch by Eryk Sun) by Steve Dower · 8 years ago
  53. a721aba Issue #26331: Implement the parsing part of PEP 515. by Brett Cannon · 8 years ago
  54. 7d895ac remove --with(out)-signal-module, since the signal module is non-optional by Benjamin Peterson · 8 years ago
  55. 6230aaf Issue #27781: Fixes uninitialized fd when !MS_WINDOWS and !HAVE_OPENAT by Steve Dower · 8 years ago
  56. eb63645 Issue #28003: Implement PEP 525 -- Asynchronous Generators. by Yury Selivanov · 8 years ago
  57. f8cb8a1 Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations. by Yury Selivanov · 8 years ago
  58. 0b9d64e Issue 18550: Check return value of ioctl() / fnctl() in internal_setblocking by Christian Heimes · 8 years ago
  59. ff4fddd Add NULL checks to the initializer of the locale module by Christian Heimes · 8 years ago
  60. bb0b0d9 replace PyInt16 with int16_t by Benjamin Peterson · 8 years ago
  61. 7a5457b Add error checking to PyInit_pyexpact by Christian Heimes · 8 years ago
  62. 6782b14 Use PyModule_AddIntMacro() in signal module by Christian Heimes · 8 years ago
  63. 2752707 Check return value of PyList_Append() in Py_Main(). CID 1353200 by Christian Heimes · 8 years ago
  64. 0be894b Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Martin Panter · 8 years ago
  65. be8da9c Issue #27570: Avoid zero-length memcpy() calls with null source pointers by Martin Panter · 8 years ago
  66. 4a75760 do not memcpy from NULL by Benjamin Peterson · 8 years ago
  67. 1c03abd Issue #27691: Fix ssl module's parsing of GEN_RID subject alternative name fields in X.509 certs. by Christian Heimes · 8 years ago
  68. 1bb0c0b explicitly cast away constness to silence compiler warning by Benjamin Peterson · 8 years ago
  69. 5130a4d Backed out changeset 8b6be1341770 by Benjamin Peterson · 8 years ago
  70. 6d99980 remove long double from ctypes value union by Benjamin Peterson · 8 years ago
  71. 281e5f8 Issue #26470: Use short name rather than name for compression name to fix #27958. by Christian Heimes · 8 years ago
  72. 768f3b4 do not pretend to support passing a fd to access() by Benjamin Peterson · 8 years ago
  73. 598894f Issue #26470: Port ssl and hashlib module to OpenSSL 1.1.0. by Christian Heimes · 8 years ago
  74. 2891492 Issue #27881: Fixed possible bugs when setting sqlite3.Connection.isolation_level. by Serhiy Storchaka · 8 years ago
  75. 3929499 Issue #1602: Windows console doesn't input or print Unicode (PEP 528) by Steve Dower · 8 years ago
  76. 3b6a6b4 Add a new private version to the builtin dict type by Victor Stinner · 8 years ago
  77. 207116b use Py_MAX by Benjamin Peterson · 8 years ago
  78. 940f33a Issue #23524: Finish removing _PyVerify_fd from sources by Steve Dower · 8 years ago
  79. 513d747 Fix mismatched if blocks in posixmodule.c. by Steve Dower · 8 years ago
  80. cc16be8 Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529) by Steve Dower · 8 years ago
  81. cc85449 clinic: PY_LONG_LONG -> long long by Benjamin Peterson · 8 years ago
  82. c235af4 fix a PY_LONG_LONG straggler by Benjamin Peterson · 8 years ago
  83. 47ff073 more PY_LONG_LONG to long long by Benjamin Peterson · 8 years ago
  84. c71ec8a sha3: let's keep it simple and always allocate enough extra space for uint64_t[20]. by Christian Heimes · 8 years ago
  85. 5940c53 Issue #26798: Coverity complains about potential memcpy() of overlapped regions. It doesn't hurt to use memmove() here. CID 1372514 / CID 1372515. Upstream https://github.com/BLAKE2/BLAKE2/issues/32 by Christian Heimes · 8 years ago
  86. cf45ee1 Issue #16113: SHA3: allocate extra memory for lane extraction and check return value of PyModule_Create() by Christian Heimes · 8 years ago
  87. 8f4b247 make sure expected values are interpreted as doubles by Benjamin Peterson · 8 years ago
  88. 1c748f3 Issue #27570: Merge null pointer fixes from 3.5 by Martin Panter · 8 years ago
  89. 840ef8f more linux -> __linux__ by Benjamin Peterson · 8 years ago
  90. b6c3458 use the '__linux__' instead 'linux' preprocessor define by Benjamin Peterson · 8 years ago
  91. 56be5f5 Eliminate a tautological-pointer-compare warning found by Clang. by Brett Cannon · 8 years ago
  92. a9296e7 require C99 bool by Benjamin Peterson · 8 years ago
  93. 2f8bfef replace PY_SIZE_MAX with SIZE_MAX by Benjamin Peterson · 8 years ago
  94. eaa3f5f Issue #16113: one more C90 violation in big endian code. by Christian Heimes · 8 years ago
  95. fa15c85 Issue #16113: take 2 on big endian machines. by Christian Heimes · 8 years ago
  96. b205fe9 Issue #16113: KeccakP-1600-opt64 does not support big endian platforms yet. by Christian Heimes · 8 years ago
  97. 6fe2a75 Issue #16113: Add SHA-3 and SHAKE support to hashlib module. by Christian Heimes · 8 years ago
  98. dfb9ef1 blake2: silence two more warnings on platforms with size_t < uint64_t. Don't use SSE2 when cross-compiling by Christian Heimes · 8 years ago
  99. f5aba58 Issue #27959: Adds oem encoding, alias ansi to mbcs, move aliasmbcs to codec lookup by Steve Dower · 8 years ago
  100. a439191 Fix some warnings from MSVC by Steve Dower · 8 years ago