1. 5eb45d7 bpo-40737: Fix possible reference leak for sqlite3 initialization (GH-20323) by Erlend Egeberg Aasland · 4 years, 3 months ago
  2. 4a21e57 bpo-40268: Remove unused structmember.h includes (GH-19530) by Victor Stinner · 4 years, 4 months ago
  3. 62183b8 bpo-40268: Remove explicit pythread.h includes (#19529) by Victor Stinner · 4 years, 4 months ago
  4. 8f87eef bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (GH-19472) by Serhiy Storchaka · 4 years, 4 months ago
  5. cd8295f bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data. (GH-19345) by Serhiy Storchaka · 4 years, 4 months ago
  6. b146568 bpo-39652: Truncate the column name after '[' only if PARSE_COLNAMES is set. (GH-18942) by Serhiy Storchaka · 4 years, 5 months ago
  7. ffd9753 bpo-39245: Switch to public API for Vectorcall (GH-18460) by Petr Viktorin · 4 years, 6 months ago
  8. d2ec81a bpo-39573: Add Py_SET_TYPE() function (GH-18394) by Victor Stinner · 4 years, 6 months ago
  9. daa9756 bpo-39573: Use Py_TYPE() macro in Modules directory (GH-18393) by Victor Stinner · 4 years, 6 months ago
  10. 78c7183 bpo-39496: Remove redundant checks from _sqlite/cursor.c (GH-18270) by Alex Henrie · 4 years, 6 months ago
  11. 1f44e77 bpo-39497: Remove unused variable from pysqlite_cursor_executescript (GH-18271) by Alex Henrie · 4 years, 7 months ago
  12. 188bb5b bpo-39494: Remove extra null terminators from kwlist vars (GH-18267) by Alex Henrie · 4 years, 7 months ago
  13. b6f5b9d Replace _pysqlite_long_from_int64() with PyLong_FromLongLong() (GH-16882) by Sergey Fedoseev · 4 years, 10 months ago
  14. f669581 bpo-38185: Fixed case-insensitive string comparison in sqlite3.Row indexing. (GH-16190) by Serhiy Storchaka · 5 years ago
  15. 8debfa5 bpo-38175: Fix a memory leak in comparison of sqlite3.Row objects. (GH-16155) by Serhiy Storchaka · 5 years ago
  16. b9a0376 closes bpo-37347: Fix refcount problem in sqlite3. (GH-14268) by gescheit · 5 years ago
  17. 59ad110 bpo-37547: add _PyObject_CallMethodOneArg (GH-14685) by Jeroen Demeyer · 5 years ago
  18. 762f93f bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267) by Jeroen Demeyer · 5 years ago
  19. 196a530 bpo-37483: add _PyObject_CallOneArg() function (#14558) by Jeroen Demeyer · 5 years ago
  20. c6a2320 bpo-37406: sqlite3 raises TypeError for wrong operation type (GH-14386) by Victor Stinner · 5 years ago
  21. 60419a7 bpo-37363: Add audit events for a range of modules (GH-14301) by Steve Dower · 5 years ago
  22. 530f506 bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464) by Jeroen Demeyer · 5 years ago
  23. e657624 bpo-30262: Don't expose private objects in sqlite3 (GH-1440) by Aviv Palivoda · 5 years ago
  24. 29198ea bpo-8677: use PY_SSIZE_T_CLEAN in sqlite (GH-12434) by Inada Naoki · 5 years ago
  25. 842acaa bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11175) by Zackery Spytz · 6 years ago
  26. fc662ac bpo-32788: Better error handling in sqlite3. (GH-3723) by Serhiy Storchaka · 6 years ago
  27. 5b25f1d bpo-34052: Prevent SQLite functions from setting callbacks on exceptions. (GH-8113) by Sergey Fedoseev · 6 years ago
  28. d4f9cf5 bpo-33029: Fix signatures of getter and setter functions. (GH-10746) by Serhiy Storchaka · 6 years ago
  29. 62be742 bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749) by Serhiy Storchaka · 6 years ago
  30. b10a64d bpo-34743: Fix test_database_source_name under SQLite 3.7.9 (GH-9426) by Berker Peksag · 6 years ago
  31. 8d1e190 bpo-32215: Fix performance regression in sqlite3 (GH-8511) by Berker Peksag · 6 years ago
  32. b229b07 Remove creation of a list for row_cast_map in pysqlite_cursor_init() (GH-8494) by Sergey Fedoseev · 6 years ago
  33. aee632d Remove some unused code in _pysqlite_query_execute() (GH-8495) by Sergey Fedoseev · 6 years ago
  34. 7762e4d prefix internal sqlite symbols with _pysqlite_ (GH-8215) by Benjamin Peterson · 6 years ago
  35. d6d4432 delete some unused pysqlite forward declarations (GH-8211) by Benjamin Peterson · 6 years ago
  36. 0830858 bpo-34041: Allow creating deterministic functions in Connection.create_function() (GH-8086) by Sergey Fedoseev · 6 years ago
  37. 66ecefc Remove tp_print implementation (GH-7857) by jdemeyer · 6 years ago
  38. ca40501 bpo-27645, sqlite: Fix integer overflow on sleep (#6594) by Victor Stinner · 6 years ago
  39. 55edd0c bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030) by Siddhesh Poyarekar · 6 years ago
  40. 030345c Fix error message in sqlite connection thread check. (GH-6028) by Takuya Akiba · 6 years ago
  41. bbf7bb7 bpo-27645: Fix version number in 'database in transaction' fallback (GH-6131) by Aviv Palivoda · 6 years ago
  42. d7aed41 bpo-27645: Add support for native backup facility of SQLite (GH-4238) by Emanuele Gaifas · 6 years ago
  43. 0a37a30 closes bpo-32460: ensure all non-static globals have initializers (#5061) by Benjamin Peterson · 7 years ago
  44. e2f92de Add the const qualifier to "char *" variables that refer to literal strings. (#4370) by Serhiy Storchaka · 7 years ago
  45. a22a127 bpo-31843: sqlite3.connect() now accepts PathLike objects as database name (#4299) by Anders Lorentsen · 7 years ago
  46. edb13ae bpo-31764: Prevent a crash in sqlite3.Cursor.close() in case the Cursor object is uninitialized (#3958) by Oren Milman · 7 years ago
  47. e56ab74 bpo-31770: Prevent a crash and refleaks when calling sqlite3.Cursor.__init__() more than once (#3968) by Oren Milman · 7 years ago
  48. 93c5a5d bpo-31740: Prevent refleaks when sqlite3.Connection.__init__() is called more than once (GH-3944) by Oren Milman · 7 years ago
  49. c8a6e5b sqlite: delete some bsddb cargo-culted code to work around Python 2.3/2.4 bugs by Benjamin Peterson · 7 years ago
  50. 5252694 closes bpo-31525: require sqlite3_prepare_v2 (#3666) by Benjamin Peterson · 7 years ago
  51. a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 7 years ago
  52. 6cca5c8 bpo-30592: Fixed error messages for some builtins. (#1996) by Serhiy Storchaka · 7 years ago
  53. 0b3ec19 Use NULL rather than 0. (#778) by Serhiy Storchaka · 7 years ago
  54. aefa7eb bpo-6532: Make the thread id an unsigned integer. (#781) by Serhiy Storchaka · 7 years ago
  55. 86a6705 bpo-9303: Migrate sqlite3 module to _v2 API to enhance performance (#359) by Aviv Palivoda · 7 years ago
  56. 4a926ca bpo-28518: Start a transaction implicitly before a DML statement (#245) by Berker Peksag · 7 years ago
  57. 228b12e Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever by Serhiy Storchaka · 8 years ago
  58. 00b1ae0 Issue #28985: Update authorizer constants in sqlite3 module by Berker Peksag · 8 years ago
  59. 5ab81d7 Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of dict. by Serhiy Storchaka · 8 years ago
  60. 070c4d7 Issue #28915: Use _PyObject_CallNoArg() by Victor Stinner · 8 years ago
  61. 85b0f5b Added the const qualifier to char* variables that refer to readonly internal by Serhiy Storchaka · 8 years ago
  62. 0651583 Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize by Serhiy Storchaka · 8 years ago
  63. 3b73ea1 Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  64. f4934ea Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  65. 22805ca Issue #27897: Fixed possible crash in sqlite3.Connection.create_collation() by Serhiy Storchaka · 8 years ago
  66. 407ac47 Issue #27897: Fixed possible crash in sqlite3.Connection.create_collation() by Serhiy Storchaka · 8 years ago
  67. 59da4b3 Issue #28037: Use sqlite3_get_autocommit() instead of setting Connection->inTransaction manually by Berker Peksag · 8 years ago
  68. 9af13ca Issue #28036: Remove unused pysqlite_flush_statement_cache function by Berker Peksag · 8 years ago
  69. ab994ed Issue #10740: sqlite3 no longer implicitly commit an open transaction before DDL statements by Berker Peksag · 8 years ago
  70. 2891492 Issue #27881: Fixed possible bugs when setting sqlite3.Connection.isolation_level. by Serhiy Storchaka · 8 years ago
  71. 47ff073 more PY_LONG_LONG to long long by Benjamin Peterson · 8 years ago
  72. 3466bde Avoid calling functions with an empty string as format string by Victor Stinner · 8 years ago
  73. ed4aa83 require a long long data type (closes #27961) by Benjamin Peterson · 8 years ago
  74. af0628e Issue #27881: Fixed possible bugs when setting sqlite3.Connection.isolation_level. by Serhiy Storchaka · 8 years ago
  75. 8631da6 Issue #27861: Fixed a crash in sqlite3.Connection.cursor() when a factory by Serhiy Storchaka · 8 years ago
  76. ef113cd Issue #27861: Fixed a crash in sqlite3.Connection.cursor() when a factory by Serhiy Storchaka · 8 years ago
  77. 6ed442c Issue #10513: Merge from 3.5 by Berker Peksag · 8 years ago
  78. cc9afa9 Issue #10513: Fix a regression in Connection.commit() by Berker Peksag · 8 years ago
  79. d7f3cdd Issue #21718: Merge from 3.5 by Berker Peksag · 8 years ago
  80. 6afe858 Issue #21718: cursor.description is now available for queries using CTEs by Berker Peksag · 8 years ago
  81. e0b70cd Issue #16864: Cursor.lastrowid now supports REPLACE statement by Berker Peksag · 8 years ago
  82. f84f259 Merge from 3.5 by Berker Peksag · 8 years ago
  83. 0e1d680 Fix typo in _sqlite/module.h by Berker Peksag · 8 years ago
  84. 0f355c0 Issue #27190: Merge from 3.5 by Berker Peksag · 8 years ago
  85. 7bea234 Issue #27190: Raise NotSupportedError if sqlite3 is older than 3.3.1 by Berker Peksag · 8 years ago
  86. f01e408 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  87. 57a01d3 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  88. fe21de9 Issue #26687: Use Py_RETURN_NONE macro in sqlite3 module by Berker Peksag · 8 years ago
  89. ec39756 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  90. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  91. 726fc13 Issue #20440: More use of Py_SETREF. by Serhiy Storchaka · 9 years ago
  92. 191321d Issue #20440: More use of Py_SETREF. by Serhiy Storchaka · 9 years ago
  93. 2d06e84 Issue #25923: Added the const qualifier to static constant arrays. by Serhiy Storchaka · 9 years ago
  94. 5a57ade Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 9 years ago
  95. e79ec70 Issue #24257: Fixed incorrect uses of PyObject_IsInstance(). by Serhiy Storchaka · 9 years ago
  96. 08d230a Issue #24257: Fixed incorrect uses of PyObject_IsInstance(). by Serhiy Storchaka · 9 years ago
  97. 3b12e95 Issue #20274: When calling a _sqlite.Connection, it now complains if passed by Larry Hastings · 9 years ago
  98. 01b0883 Issue #20274: Remove ignored and erroneous "kwargs" parameters from three by Larry Hastings · 9 years ago
  99. 72e731c Issue #13583: sqlite3.Row now supports slice indexing. by Serhiy Storchaka · 9 years ago
  100. 009b811 Removed unintentional trailing spaces in non-external and non-generated C files. by Serhiy Storchaka · 9 years ago