1. 407ac47 Issue #27897: Fixed possible crash in sqlite3.Connection.create_collation() by Serhiy Storchaka · 8 years ago
  2. 3cb091e Increase buffer for readlink() in case OS will support longer names one day. by Christian Heimes · 8 years ago
  3. 2f366ca Add an extra byte for null in case we ever get very long unicode names. by Christian Heimes · 8 years ago
  4. bf3c1c3 Issue #28075: Fix test_access_denied in Python 3.5 by Berker Peksag · 8 years ago
  5. 0b4dc48 Issue #28075: Check for ERROR_ACCESS_DENIED in Windows implementation of os.stat() by Berker Peksag · 8 years ago
  6. 6d57fe1 Issue #28139: Fix messed up indentation by Martin Panter · 8 years ago
  7. 2dc77f0 Issue #28145: Spelling fixes by Martin Panter · 8 years ago
  8. e6265e9 Issue #27599: Fixed buffer overrun in binascii.b2a_qp() and binascii.a2b_qp(). by Serhiy Storchaka · 8 years ago
  9. 7ce2013 Restrict name_length to NAME_MAXLEN in unicodedata_UCD_lookup() by Christian Heimes · 8 years ago
  10. 4aa74c4 Issue #28131: Fix a regression in zipimport's compile_source() by Berker Peksag · 8 years ago
  11. 8ddcf3a Issue #28019: itertools.count() no longer rounds non-integer step in range by Serhiy Storchaka · 8 years ago
  12. 8dcc48e Issue #25758: Prevents zipimport from unnecessarily encoding a filename (patch by Eryk Sun) by Steve Dower · 8 years ago
  13. 0be894b Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Martin Panter · 8 years ago
  14. be8da9c Issue #27570: Avoid zero-length memcpy() calls with null source pointers by Martin Panter · 8 years ago
  15. 4a75760 do not memcpy from NULL by Benjamin Peterson · 8 years ago
  16. 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
  17. 1bb0c0b explicitly cast away constness to silence compiler warning by Benjamin Peterson · 8 years ago
  18. 5130a4d Backed out changeset 8b6be1341770 by Benjamin Peterson · 8 years ago
  19. 6d99980 remove long double from ctypes value union by Benjamin Peterson · 8 years ago
  20. 281e5f8 Issue #26470: Use short name rather than name for compression name to fix #27958. by Christian Heimes · 8 years ago
  21. 768f3b4 do not pretend to support passing a fd to access() by Benjamin Peterson · 8 years ago
  22. 598894f Issue #26470: Port ssl and hashlib module to OpenSSL 1.1.0. by Christian Heimes · 8 years ago
  23. 2891492 Issue #27881: Fixed possible bugs when setting sqlite3.Connection.isolation_level. by Serhiy Storchaka · 8 years ago
  24. ef113cd Issue #27861: Fixed a crash in sqlite3.Connection.cursor() when a factory by Serhiy Storchaka · 8 years ago
  25. c427b8d Issue #19884: Avoid spurious output on OS X with Gnu Readline by Martin Panter · 8 years ago
  26. cc9afa9 Issue #10513: Fix a regression in Connection.commit() by Berker Peksag · 8 years ago
  27. 6afe858 Issue #21718: cursor.description is now available for queries using CTEs by Berker Peksag · 8 years ago
  28. 8682f57 Issue #27782: Fix m_methods handling in multiphase init by Nick Coghlan · 8 years ago
  29. 6423429 merge 3.4 (#27783) by Benjamin Peterson · 8 years ago
  30. a12d92b merge 3.3 (#27783) by Benjamin Peterson · 8 years ago
  31. 1f0e7c9 rearrange methodcaller_new so that the main error case does not cause uninitialized memory usage (closes #27783) by Benjamin Peterson · 8 years ago
  32. 76aa1fb merge 3.4 (#27774) by Benjamin Peterson · 8 years ago
  33. 10bc0f6 merge 3.3 (#27774) by Benjamin Peterson · 8 years ago
  34. 3a27b08 do not decref value borrowed from list (closes #27774) by Benjamin Peterson · 8 years ago
  35. 81b9ecd fix corner cases in the management of server_hostname (closes #27773) by Benjamin Peterson · 8 years ago
  36. b1c6bdc merge 3.4 by Benjamin Peterson · 8 years ago
  37. 432ea4f fail when negative values are passed to instr() by Benjamin Peterson · 8 years ago
  38. 91060f2 merge 3.4 (closes #27760) by Benjamin Peterson · 8 years ago
  39. 5295532 merge 3.3 (closes #27760) by Benjamin Peterson · 8 years ago
  40. 4f97651 fix possible integer overflow in binascii.b2a_qp (closes #27760) by Benjamin Peterson · 8 years ago
  41. f17a8e9 merge 3.4 by Benjamin Peterson · 8 years ago
  42. 40a77c3 do not allow reading negative values with getstr() by Benjamin Peterson · 8 years ago
  43. 9745ee0 merge 3.4 (closes #27758) by Benjamin Peterson · 8 years ago
  44. 59b6abd merge 3.3 (#27758) by Benjamin Peterson · 8 years ago
  45. 6e01d90 check for overflow in join_append_data (closes #27758) by Benjamin Peterson · 8 years ago
  46. 0b58886 Issue #20160: Merged fix from 3.4. by Vinay Sajip · 8 years ago
  47. a0b2568 Issue #20160: Merged fix from 3.3. by Vinay Sajip · 8 years ago
  48. 6f25003 Issue #20160: Handled passing of large structs to callbacks correctly. by Vinay Sajip · 8 years ago
  49. dbaa559 all SCHED_ constants are optional (closes #27656) by Benjamin Peterson · 8 years ago
  50. eb99570 Issue #27626: Spelling fixes in docs, comments and internal names by Martin Panter · 8 years ago
  51. e33797b ctypes: fix CThunkObject_new() by Victor Stinner · 8 years ago
  52. 1fd497e Issue #27591: Set sigint_event to NULL if _PyOS_IsMainThread() returns false by Berker Peksag · 8 years ago
  53. 84544c1 Issue #27130: Fix handling of buffers exceeding UINT_MAX in “zlib” module by Martin Panter · 8 years ago
  54. 524714e socket: use INVALID_SOCKET by Victor Stinner · 8 years ago
  55. 0cec877 socket: Fix internal_select() by Victor Stinner · 8 years ago
  56. b22a677 Issue #27533: Release GIL in nt._isdir by Steve Dower · 8 years ago
  57. 8c126f1 Issue #26974: Fix segfault in the presence of absurd subclassing. Proactively by Stefan Krah · 8 years ago
  58. dec25af Issue #17711: Fixed unpickling by the persistent ID with protocol 0. by Serhiy Storchaka · 8 years ago
  59. bed7f1a Issue #23804: Fix SSL zero-length recv() calls to not block and raise EOF by Martin Panter · 8 years ago
  60. 1a2b24f Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
  61. b8a2f51 assume egd unless OPENSSL_NO_EGD is defined—remove configure check (closes #24557) by Benjamin Peterson · 8 years ago
  62. 9e941d6 Fixed integer overflow in array.buffer_info(). by Serhiy Storchaka · 8 years ago
  63. 947f099 Issue #27006: Do not use PyDec_CheckExact() on a type. by Stefan Krah · 8 years ago
  64. 6817c59 Issue #27006: from_float(): call the subclass' __new__() and __init__(). by Stefan Krah · 8 years ago
  65. 886a5f3 Issue #27343: Fixed error message for conflicting initializers of ctypes.Structure. by Serhiy Storchaka · 8 years ago
  66. 85e6635 ctypes: the type of b_size is Py_ssize_t. by Serhiy Storchaka · 8 years ago
  67. adef646 Issue #27330: Fixed possible leaks in the ctypes module. by Serhiy Storchaka · 8 years ago
  68. 11a693d merge 3.4 by Benjamin Peterson · 8 years ago
  69. 06d49bb sync ordering of stddef.h includes with expat 2.1.1 by Benjamin Peterson · 8 years ago
  70. f00c49d Issue #16182: Fix readline begidx, endidx, and use locale encoding by Martin Panter · 8 years ago
  71. 0e1d680 Fix typo in _sqlite/module.h by Berker Peksag · 8 years ago
  72. 7bea234 Issue #27190: Raise NotSupportedError if sqlite3 is older than 3.3.1 by Berker Peksag · 8 years ago
  73. 179f960 Issue #25455: Fixed a crash in repr of recursive functools.partial objects. by Serhiy Storchaka · 8 years ago
  74. 9062c26 Issue #25455: Fixed a crash in repr of ElementTree.Element with recursive tag. by Serhiy Storchaka · 8 years ago
  75. b5ad549 merge 3.4 (#26556) by Benjamin Peterson · 8 years ago
  76. 196d7db upgrade expt to 2.1.1 (closes #26556) by Benjamin Peterson · 8 years ago
  77. ebe95fd Issue #26305: Argument Clinic now escapes braces. No need to double them. by Serhiy Storchaka · 8 years ago
  78. efe7256 Fix a comment. by Barry Warsaw · 8 years ago
  79. 480e285 Issue #27066: Fixed SystemError if a custom opener (for open()) returns by Barry Warsaw · 8 years ago
  80. 3f0ee83 Issue #27164: Allow decompressing raw Deflate streams with predefined zdict by Martin Panter · 8 years ago
  81. f585414 remove (hilarious) defaults for various constants getpath.c needs by Benjamin Peterson · 8 years ago
  82. e26da7c Issue #27171: Fix typos in documentation, comments, and test function names by Martin Panter · 8 years ago
  83. a90a4a9 Issue #27125: Remove duplicated words from documentation and comments by Martin Panter · 8 years ago
  84. fa76eee Fix issue27146 - add stdio.h include to posixmodule.c for ctermid(). by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  85. 6bb91f3 Issue #20699: Document that “io” methods accept bytes-like objects by Martin Panter · 8 years ago
  86. 0fdf41d Issue #5784: Expand documentation and tests for zlib wbits parameter by Martin Panter · 8 years ago
  87. 46f5072 Issue #27076: Doc, comment and tests spelling fixes by Martin Panter · 8 years ago
  88. 5a093c1 fix indentation and add curlies (closes #27093) by Benjamin Peterson · 8 years ago
  89. 13e602e Issue #26168: Fixed possible refleaks in failing Py_BuildValue() with the "N" by Serhiy Storchaka · 8 years ago
  90. f95455d Issue #26995: Added tests for "f", "d", "D", "S", "Y", and "U" format codes by Serhiy Storchaka · 8 years ago
  91. acef5de Backported tests for issue #18531. by Serhiy Storchaka · 8 years ago
  92. 507898d issue27018 - Fix the documentation of select.epoll.register method. by Senthil Kumaran · 8 years ago
  93. 2dc1bbb Remove outdated PEP 291 compatibility requirement comment by Martin Panter · 8 years ago
  94. df40b62 Issue #25745: Fixed leaking a userptr in curses panel destructor. by Serhiy Storchaka · 8 years ago
  95. e3f1b09 Issue #23815: Fixed crashes related to directly created instances of types in by Serhiy Storchaka · 8 years ago
  96. 4c35964 Corrections for a/an in code comments and documentation by Martin Panter · 8 years ago
  97. 129fe04 Issue #26512: Clarify Integral; tidy up table of rounding functions by Martin Panter · 8 years ago
  98. 720e655 Issue #18916: Update thread module docstrings by Berker Peksag · 8 years ago
  99. d6e6f8b Issue #26898: Fix typo in math.isclose() docstring by Berker Peksag · 8 years ago
  100. 6dfcde5 Issue #26822: Decreased an overhead of using _PyArg_NoKeywords() in calls of by Serhiy Storchaka · 8 years ago