1. 606ab86 Change order of io.UnsupportedOperation base classes. by Serhiy Storchaka · 8 years ago
  2. 6e723d2 Issue #25659: Change assert to TypeError in from_buffer/_copy() by Martin Panter · 8 years ago
  3. 395733d Issue #10656: Fix out-of-tree building on AIX by Martin Panter · 8 years ago
  4. 144f77a Issue #28715: Added error checks for PyUnicode_AsUTF8(). by Serhiy Storchaka · 8 years ago
  5. 93ff872 Issue #28732: Raise ValueError when argv[0] is empty. by Steve Dower · 8 years ago
  6. 11f4326 Issue #28732: Fix crash in os.spawnv() with no elements in args by Steve Dower · 8 years ago
  7. f4934ea Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  8. c9e08d8 Issue #28000: Fix gethostbyname_r() usage on AIX with _LINUX_SOURCE_COMPAT by Martin Panter · 8 years ago
  9. 62e32d6 Issue #19398: Extra slash no longer added to sys.path components in case of by Serhiy Storchaka · 8 years ago
  10. 46a02db Issue #28653: Fix a refleak in functools.lru_cache. by Yury Selivanov · 8 years ago
  11. 579f038 Issue #28585: Restored docstring of os._isdir(). by Serhiy Storchaka · 8 years ago
  12. a7c972e Issue #28387: Fixed possible crash in _io.TextIOWrapper deallocator when by Serhiy Storchaka · 8 years ago
  13. 04f17f1 Issue #27517: LZMA compressor and decompressor no longer raise exceptions if by Serhiy Storchaka · 8 years ago
  14. 0bcd89b Issue #28549: Fixed segfault in curses's addch() with ncurses6. by Serhiy Storchaka · 8 years ago
  15. 84968b7 Issue #28444: Fix missing extensions modules when cross compiling. by Xavier de Gaye · 8 years ago
  16. 3ec5f42 Fixed possible NULL decrefing. by Serhiy Storchaka · 8 years ago
  17. b29cee4 Issue #28526: Use PyUnicode_AsEncodedString() instead of by Serhiy Storchaka · 8 years ago
  18. f536af1 Issue #24381: Avoid unused function warning when building bundled macOS libffi. by Ned Deily · 8 years ago
  19. 9c0e1f8 Issue #28379: Added sanity checks and tests for PyUnicode_CopyCharacters(). by Serhiy Storchaka · 8 years ago
  20. 8f1cdc6 ensure read size is initialized by Benjamin Peterson · 8 years ago
  21. 3776836 do not leak buffer if mmap is not writable by Benjamin Peterson · 8 years ago
  22. cd04db0 mmap: do all internal arithmetic with Py_ssize_t while being very careful about overflow by Benjamin Peterson · 8 years ago
  23. cc16423 Issue #28295: Fixed the documentation and added tests for PyUnicode_AsUCS4(). by Serhiy Storchaka · 8 years ago
  24. 85c3f26 Issue #28322: Fixed possible crashes when unpickle itertools objects from by Serhiy Storchaka · 8 years ago
  25. 38317d3 Issue #28275: Clean up to avoid use-after-free after bzip decompress failure by Martin Panter · 8 years ago
  26. 5ae4f49 Issue #20947: Fixed a gcc warning with -Wstrict-overflow. by Serhiy Storchaka · 8 years ago
  27. c0b7037 Issue #28275: Fixed possible use adter free in LZMADecompressor.decompress(). by Serhiy Storchaka · 8 years ago
  28. 407ac47 Issue #27897: Fixed possible crash in sqlite3.Connection.create_collation() by Serhiy Storchaka · 8 years ago
  29. 3cb091e Increase buffer for readlink() in case OS will support longer names one day. by Christian Heimes · 8 years ago
  30. 2f366ca Add an extra byte for null in case we ever get very long unicode names. by Christian Heimes · 8 years ago
  31. bf3c1c3 Issue #28075: Fix test_access_denied in Python 3.5 by Berker Peksag · 8 years ago
  32. 0b4dc48 Issue #28075: Check for ERROR_ACCESS_DENIED in Windows implementation of os.stat() by Berker Peksag · 8 years ago
  33. 6d57fe1 Issue #28139: Fix messed up indentation by Martin Panter · 8 years ago
  34. 2dc77f0 Issue #28145: Spelling fixes by Martin Panter · 8 years ago
  35. e6265e9 Issue #27599: Fixed buffer overrun in binascii.b2a_qp() and binascii.a2b_qp(). by Serhiy Storchaka · 8 years ago
  36. 7ce2013 Restrict name_length to NAME_MAXLEN in unicodedata_UCD_lookup() by Christian Heimes · 8 years ago
  37. 4aa74c4 Issue #28131: Fix a regression in zipimport's compile_source() by Berker Peksag · 8 years ago
  38. 8ddcf3a Issue #28019: itertools.count() no longer rounds non-integer step in range by Serhiy Storchaka · 8 years ago
  39. 8dcc48e Issue #25758: Prevents zipimport from unnecessarily encoding a filename (patch by Eryk Sun) by Steve Dower · 8 years ago
  40. 0be894b Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Martin Panter · 8 years ago
  41. be8da9c Issue #27570: Avoid zero-length memcpy() calls with null source pointers by Martin Panter · 8 years ago
  42. 4a75760 do not memcpy from NULL by Benjamin Peterson · 8 years ago
  43. 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
  44. 1bb0c0b explicitly cast away constness to silence compiler warning by Benjamin Peterson · 8 years ago
  45. 5130a4d Backed out changeset 8b6be1341770 by Benjamin Peterson · 8 years ago
  46. 6d99980 remove long double from ctypes value union by Benjamin Peterson · 8 years ago
  47. 281e5f8 Issue #26470: Use short name rather than name for compression name to fix #27958. by Christian Heimes · 8 years ago
  48. 768f3b4 do not pretend to support passing a fd to access() by Benjamin Peterson · 8 years ago
  49. 598894f Issue #26470: Port ssl and hashlib module to OpenSSL 1.1.0. by Christian Heimes · 8 years ago
  50. 2891492 Issue #27881: Fixed possible bugs when setting sqlite3.Connection.isolation_level. by Serhiy Storchaka · 8 years ago
  51. ef113cd Issue #27861: Fixed a crash in sqlite3.Connection.cursor() when a factory by Serhiy Storchaka · 8 years ago
  52. c427b8d Issue #19884: Avoid spurious output on OS X with Gnu Readline by Martin Panter · 8 years ago
  53. cc9afa9 Issue #10513: Fix a regression in Connection.commit() by Berker Peksag · 8 years ago
  54. 6afe858 Issue #21718: cursor.description is now available for queries using CTEs by Berker Peksag · 8 years ago
  55. 8682f57 Issue #27782: Fix m_methods handling in multiphase init by Nick Coghlan · 8 years ago
  56. 6423429 merge 3.4 (#27783) by Benjamin Peterson · 8 years ago
  57. a12d92b merge 3.3 (#27783) by Benjamin Peterson · 8 years ago
  58. 1f0e7c9 rearrange methodcaller_new so that the main error case does not cause uninitialized memory usage (closes #27783) by Benjamin Peterson · 8 years ago
  59. 76aa1fb merge 3.4 (#27774) by Benjamin Peterson · 8 years ago
  60. 10bc0f6 merge 3.3 (#27774) by Benjamin Peterson · 8 years ago
  61. 3a27b08 do not decref value borrowed from list (closes #27774) by Benjamin Peterson · 8 years ago
  62. 81b9ecd fix corner cases in the management of server_hostname (closes #27773) by Benjamin Peterson · 8 years ago
  63. b1c6bdc merge 3.4 by Benjamin Peterson · 8 years ago
  64. 432ea4f fail when negative values are passed to instr() by Benjamin Peterson · 8 years ago
  65. 91060f2 merge 3.4 (closes #27760) by Benjamin Peterson · 8 years ago
  66. 5295532 merge 3.3 (closes #27760) by Benjamin Peterson · 8 years ago
  67. 4f97651 fix possible integer overflow in binascii.b2a_qp (closes #27760) by Benjamin Peterson · 8 years ago
  68. f17a8e9 merge 3.4 by Benjamin Peterson · 8 years ago
  69. 40a77c3 do not allow reading negative values with getstr() by Benjamin Peterson · 8 years ago
  70. 9745ee0 merge 3.4 (closes #27758) by Benjamin Peterson · 8 years ago
  71. 59b6abd merge 3.3 (#27758) by Benjamin Peterson · 8 years ago
  72. 6e01d90 check for overflow in join_append_data (closes #27758) by Benjamin Peterson · 8 years ago
  73. 0b58886 Issue #20160: Merged fix from 3.4. by Vinay Sajip · 8 years ago
  74. a0b2568 Issue #20160: Merged fix from 3.3. by Vinay Sajip · 8 years ago
  75. 6f25003 Issue #20160: Handled passing of large structs to callbacks correctly. by Vinay Sajip · 8 years ago
  76. dbaa559 all SCHED_ constants are optional (closes #27656) by Benjamin Peterson · 8 years ago
  77. eb99570 Issue #27626: Spelling fixes in docs, comments and internal names by Martin Panter · 8 years ago
  78. e33797b ctypes: fix CThunkObject_new() by Victor Stinner · 8 years ago
  79. 1fd497e Issue #27591: Set sigint_event to NULL if _PyOS_IsMainThread() returns false by Berker Peksag · 8 years ago
  80. 84544c1 Issue #27130: Fix handling of buffers exceeding UINT_MAX in “zlib” module by Martin Panter · 8 years ago
  81. 524714e socket: use INVALID_SOCKET by Victor Stinner · 8 years ago
  82. 0cec877 socket: Fix internal_select() by Victor Stinner · 8 years ago
  83. b22a677 Issue #27533: Release GIL in nt._isdir by Steve Dower · 8 years ago
  84. 8c126f1 Issue #26974: Fix segfault in the presence of absurd subclassing. Proactively by Stefan Krah · 8 years ago
  85. dec25af Issue #17711: Fixed unpickling by the persistent ID with protocol 0. by Serhiy Storchaka · 8 years ago
  86. bed7f1a Issue #23804: Fix SSL zero-length recv() calls to not block and raise EOF by Martin Panter · 8 years ago
  87. 1a2b24f Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
  88. b8a2f51 assume egd unless OPENSSL_NO_EGD is defined—remove configure check (closes #24557) by Benjamin Peterson · 8 years ago
  89. 9e941d6 Fixed integer overflow in array.buffer_info(). by Serhiy Storchaka · 8 years ago
  90. 947f099 Issue #27006: Do not use PyDec_CheckExact() on a type. by Stefan Krah · 8 years ago
  91. 6817c59 Issue #27006: from_float(): call the subclass' __new__() and __init__(). by Stefan Krah · 8 years ago
  92. 886a5f3 Issue #27343: Fixed error message for conflicting initializers of ctypes.Structure. by Serhiy Storchaka · 8 years ago
  93. 85e6635 ctypes: the type of b_size is Py_ssize_t. by Serhiy Storchaka · 8 years ago
  94. adef646 Issue #27330: Fixed possible leaks in the ctypes module. by Serhiy Storchaka · 8 years ago
  95. 11a693d merge 3.4 by Benjamin Peterson · 8 years ago
  96. 06d49bb sync ordering of stddef.h includes with expat 2.1.1 by Benjamin Peterson · 8 years ago
  97. f00c49d Issue #16182: Fix readline begidx, endidx, and use locale encoding by Martin Panter · 8 years ago
  98. 0e1d680 Fix typo in _sqlite/module.h by Berker Peksag · 8 years ago
  99. 7bea234 Issue #27190: Raise NotSupportedError if sqlite3 is older than 3.3.1 by Berker Peksag · 8 years ago
  100. 179f960 Issue #25455: Fixed a crash in repr of recursive functools.partial objects. by Serhiy Storchaka · 8 years ago