1. 2256a28 bpo-43444: Move sqlite3 MODULE_NAME from setup.py to module.h (GH-24801) by Erlend Egeberg Aasland · 3 years, 6 months ago
  2. e161ec5 bpo-43369: sqlite3_column_{text,blob} failures now raise MemoryError (GH-24723) by Erlend Egeberg Aasland · 3 years, 7 months ago
  3. 3b4b2cf bpo-43368: Fix fetching empty bytes in sqlite3 (GH-24706) by Mariusz Felisiak · 3 years, 7 months ago
  4. 25e244c bpo-39523: Use do-while loop pysqlite_cursor_executescript() (GH-18305) by Alex Henrie · 3 years, 7 months ago
  5. 2183d06 bpo-43251: sqlite3_column_name() failures now raise MemoryError (GH-24609) by Erlend Egeberg Aasland · 3 years, 7 months ago
  6. 5e48e83 bpo-43294: Remove unused variables in pysqlite_connection_*() (GH-24658) by Erlend Egeberg Aasland · 3 years, 7 months ago
  7. 3150754 bpo-43314: Remove SQLITE_OPEN_URI ifdef (GH-24637) by Erlend Egeberg Aasland · 3 years, 7 months ago
  8. 91ea37c bpo-43290: Remove workaround from pysqlite_step() (GH-24638) by Erlend Egeberg Aasland · 3 years, 7 months ago
  9. 38b6c2a bpo-43269: Remove redundant extern keywords (GH-24605) by Erlend Egeberg Aasland · 3 years, 7 months ago
  10. bf838a6 bpo-43269: Clean up sqlite3 file scope (GH-24578) by Erlend Egeberg Aasland · 3 years, 7 months ago
  11. 2bb0bf4 bpo-43258: Make sqlite3 callback functions static (GH-24574) by Erlend Egeberg Aasland · 3 years, 7 months ago
  12. 979b23c bpo-43258: Don't allocate sqlite3 aggregate context for empty queries (GH-24569) by Erlend Egeberg Aasland · 3 years, 7 months ago
  13. cc96231 bpo-43249: Improve scoping in _pysqlite_fetch_one_row() (GH-24565) by Erlend Egeberg Aasland · 3 years, 7 months ago
  14. 47feb1f bpo-43249: sqlite3_column_bytes() must follow sqlite_column_blob() (GH-24562) by Erlend Egeberg Aasland · 3 years, 7 months ago
  15. ea46579 bpo-40956: Fix segfault when Connection.backup is called without target (GH-24503) by Erlend Egeberg Aasland · 3 years, 7 months ago
  16. 9073180 bpo-43083: Fix error handling in _sqlite3 (GH-24395) by Serhiy Storchaka · 3 years, 8 months ago
  17. a330365 bpo-40956: Fix sqlite3.Cursor.fetchmany() default value (GH-24214) by Erlend Egeberg Aasland · 3 years, 8 months ago
  18. 203b249 bpo-40959: Remove unused declarations from sqlite3 headers (GH-20828) by Erlend Egeberg Aasland · 3 years, 9 months ago
  19. cf0b239 bpo-40810: Require SQLite 3.7.15 (GH-24106) by Erlend Egeberg Aasland · 3 years, 9 months ago
  20. c7f8d3c bpo-40956: Convert _sqlite3.Cursor to Argument Clinic (GH-24007) by Erlend Egeberg Aasland · 3 years, 9 months ago
  21. 84d79cf bpo-40956: Convert _sqlite3.Row to Argument Clinic (GH-23964) by Erlend Egeberg Aasland · 3 years, 9 months ago
  22. a6d63a2 Fix compiler warnings regarding loss of data (GH-23983) by Pablo Galindo · 3 years, 9 months ago
  23. 897387d bpo-1635741: sqlite3: Fix ref leak introduced by commit bf64d90 (GH-23972) by Erlend Egeberg Aasland · 3 years, 9 months ago
  24. bf64d90 bpo-1635741: sqlite3 uses Py_NewRef/Py_XNewRef (GH-23170) by Erlend Egeberg Aasland · 3 years, 9 months ago
  25. 3ccef1c bpo-40956: Convert _sqlite3.Connection to Argument Clinic, part 2 (GH-23838) by Erlend Egeberg Aasland · 3 years, 9 months ago
  26. 2179349 bpo-40956: Fix sqlite3 AC code (GH-23837) by Dong-hee Na · 3 years, 9 months ago
  27. 1ba82bb bpo-40956: Convert _sqlite3.Connection to Argument Clinic (GH-23341) by Erlend Egeberg Aasland · 3 years, 9 months ago
  28. a1f401a bpo-42264: Deprecate sqlite3.OptimizedUnicode (GH-23163) by Erlend Egeberg Aasland · 3 years, 10 months ago
  29. 2ffba2a bpo-41861, _sqlite3 : Add NEWS entry and rename variables (GH-23337) by Erlend Egeberg Aasland · 3 years, 10 months ago
  30. 789359f bpo-1635741: _sqlite3 uses PyModule_AddObjectRef() (GH-23148) by Erlend Egeberg Aasland · 3 years, 11 months ago
  31. 7d21027 bpo-40956: Convert _sqlite3 module level functions to Argument Clinic (GH-22484) by Erlend Egeberg Aasland · 3 years, 11 months ago
  32. 644e942 bpo-42021: Fix possible ref leaks during _sqlite3 module init (GH-22673) by Erlend Egeberg Aasland · 4 years ago
  33. 256e54a bpo-41861: Convert _sqlite3 CursorType and ConnectionType to heap types (GH-22478) by Erlend Egeberg Aasland · 4 years ago
  34. 9031bd4 bpo-41861: Convert _sqlite3 RowType and StatementType to heap types (GH-22444) by Erlend Egeberg Aasland · 4 years ago
  35. cb6db8b bpo-41861: Convert _sqlite3 PrepareProtocolType to heap type (GH-22428) by Erlend Egeberg Aasland · 4 years ago
  36. a937ab4 bpo-41861: Convert _sqlite3 cache and node static types to heap types (GH-22417) by Erlend Egeberg Aasland · 4 years ago
  37. bfee9fa bpo-41815: SQLite: segfault if backup called on closed database (GH-22322) by Peter McCormick · 4 years ago
  38. 0b419b7 bpo-41662: Fix bugs in binding parameters in sqlite3 (GH-21998) by Serhiy Storchaka · 4 years ago
  39. 207c321 bpo-40744: Drop support for SQLite pre 3.7.3 (GH-20909) by Erlend Egeberg Aasland · 4 years ago
  40. 7f331c8 bpo-40318: Migrate to SQLite3 trace v2 API (GH-19581) by Erlend Egeberg Aasland · 4 years, 1 month ago
  41. 8171580 bpo-41638: Improve ProgrammingError message for absent parameter. (GH-21999) by Serhiy Storchaka · 4 years, 1 month ago
  42. 5eb45d7 bpo-40737: Fix possible reference leak for sqlite3 initialization (GH-20323) by Erlend Egeberg Aasland · 4 years, 4 months ago
  43. 4a21e57 bpo-40268: Remove unused structmember.h includes (GH-19530) by Victor Stinner · 4 years, 5 months ago
  44. 62183b8 bpo-40268: Remove explicit pythread.h includes (#19529) by Victor Stinner · 4 years, 5 months ago
  45. 8f87eef bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (GH-19472) by Serhiy Storchaka · 4 years, 5 months ago
  46. cd8295f bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data. (GH-19345) by Serhiy Storchaka · 4 years, 5 months ago
  47. b146568 bpo-39652: Truncate the column name after '[' only if PARSE_COLNAMES is set. (GH-18942) by Serhiy Storchaka · 4 years, 6 months ago
  48. ffd9753 bpo-39245: Switch to public API for Vectorcall (GH-18460) by Petr Viktorin · 4 years, 7 months ago
  49. d2ec81a bpo-39573: Add Py_SET_TYPE() function (GH-18394) by Victor Stinner · 4 years, 8 months ago
  50. daa9756 bpo-39573: Use Py_TYPE() macro in Modules directory (GH-18393) by Victor Stinner · 4 years, 8 months ago
  51. 78c7183 bpo-39496: Remove redundant checks from _sqlite/cursor.c (GH-18270) by Alex Henrie · 4 years, 8 months ago
  52. 1f44e77 bpo-39497: Remove unused variable from pysqlite_cursor_executescript (GH-18271) by Alex Henrie · 4 years, 8 months ago
  53. 188bb5b bpo-39494: Remove extra null terminators from kwlist vars (GH-18267) by Alex Henrie · 4 years, 8 months ago
  54. b6f5b9d Replace _pysqlite_long_from_int64() with PyLong_FromLongLong() (GH-16882) by Sergey Fedoseev · 5 years ago
  55. f669581 bpo-38185: Fixed case-insensitive string comparison in sqlite3.Row indexing. (GH-16190) by Serhiy Storchaka · 5 years ago
  56. 8debfa5 bpo-38175: Fix a memory leak in comparison of sqlite3.Row objects. (GH-16155) by Serhiy Storchaka · 5 years ago
  57. b9a0376 closes bpo-37347: Fix refcount problem in sqlite3. (GH-14268) by gescheit · 5 years ago
  58. 59ad110 bpo-37547: add _PyObject_CallMethodOneArg (GH-14685) by Jeroen Demeyer · 5 years ago
  59. 762f93f bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267) by Jeroen Demeyer · 5 years ago
  60. 196a530 bpo-37483: add _PyObject_CallOneArg() function (#14558) by Jeroen Demeyer · 5 years ago
  61. c6a2320 bpo-37406: sqlite3 raises TypeError for wrong operation type (GH-14386) by Victor Stinner · 5 years ago
  62. 60419a7 bpo-37363: Add audit events for a range of modules (GH-14301) by Steve Dower · 5 years ago
  63. 530f506 bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464) by Jeroen Demeyer · 5 years ago
  64. e657624 bpo-30262: Don't expose private objects in sqlite3 (GH-1440) by Aviv Palivoda · 5 years ago
  65. 29198ea bpo-8677: use PY_SSIZE_T_CLEAN in sqlite (GH-12434) by Inada Naoki · 6 years ago
  66. 842acaa bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11175) by Zackery Spytz · 6 years ago
  67. fc662ac bpo-32788: Better error handling in sqlite3. (GH-3723) by Serhiy Storchaka · 6 years ago
  68. 5b25f1d bpo-34052: Prevent SQLite functions from setting callbacks on exceptions. (GH-8113) by Sergey Fedoseev · 6 years ago
  69. d4f9cf5 bpo-33029: Fix signatures of getter and setter functions. (GH-10746) by Serhiy Storchaka · 6 years ago
  70. 62be742 bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749) by Serhiy Storchaka · 6 years ago
  71. b10a64d bpo-34743: Fix test_database_source_name under SQLite 3.7.9 (GH-9426) by Berker Peksag · 6 years ago
  72. 8d1e190 bpo-32215: Fix performance regression in sqlite3 (GH-8511) by Berker Peksag · 6 years ago
  73. b229b07 Remove creation of a list for row_cast_map in pysqlite_cursor_init() (GH-8494) by Sergey Fedoseev · 6 years ago
  74. aee632d Remove some unused code in _pysqlite_query_execute() (GH-8495) by Sergey Fedoseev · 6 years ago
  75. 7762e4d prefix internal sqlite symbols with _pysqlite_ (GH-8215) by Benjamin Peterson · 6 years ago
  76. d6d4432 delete some unused pysqlite forward declarations (GH-8211) by Benjamin Peterson · 6 years ago
  77. 0830858 bpo-34041: Allow creating deterministic functions in Connection.create_function() (GH-8086) by Sergey Fedoseev · 6 years ago
  78. 66ecefc Remove tp_print implementation (GH-7857) by jdemeyer · 6 years ago
  79. ca40501 bpo-27645, sqlite: Fix integer overflow on sleep (#6594) by Victor Stinner · 6 years ago
  80. 55edd0c bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030) by Siddhesh Poyarekar · 6 years ago
  81. 030345c Fix error message in sqlite connection thread check. (GH-6028) by Takuya Akiba · 6 years ago
  82. bbf7bb7 bpo-27645: Fix version number in 'database in transaction' fallback (GH-6131) by Aviv Palivoda · 7 years ago
  83. d7aed41 bpo-27645: Add support for native backup facility of SQLite (GH-4238) by Emanuele Gaifas · 7 years ago
  84. 0a37a30 closes bpo-32460: ensure all non-static globals have initializers (#5061) by Benjamin Peterson · 7 years ago
  85. e2f92de Add the const qualifier to "char *" variables that refer to literal strings. (#4370) by Serhiy Storchaka · 7 years ago
  86. a22a127 bpo-31843: sqlite3.connect() now accepts PathLike objects as database name (#4299) by Anders Lorentsen · 7 years ago
  87. edb13ae bpo-31764: Prevent a crash in sqlite3.Cursor.close() in case the Cursor object is uninitialized (#3958) by Oren Milman · 7 years ago
  88. e56ab74 bpo-31770: Prevent a crash and refleaks when calling sqlite3.Cursor.__init__() more than once (#3968) by Oren Milman · 7 years ago
  89. 93c5a5d bpo-31740: Prevent refleaks when sqlite3.Connection.__init__() is called more than once (GH-3944) by Oren Milman · 7 years ago
  90. c8a6e5b sqlite: delete some bsddb cargo-culted code to work around Python 2.3/2.4 bugs by Benjamin Peterson · 7 years ago
  91. 5252694 closes bpo-31525: require sqlite3_prepare_v2 (#3666) by Benjamin Peterson · 7 years ago
  92. a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 7 years ago
  93. 6cca5c8 bpo-30592: Fixed error messages for some builtins. (#1996) by Serhiy Storchaka · 7 years ago
  94. 0b3ec19 Use NULL rather than 0. (#778) by Serhiy Storchaka · 8 years ago
  95. aefa7eb bpo-6532: Make the thread id an unsigned integer. (#781) by Serhiy Storchaka · 8 years ago
  96. 86a6705 bpo-9303: Migrate sqlite3 module to _v2 API to enhance performance (#359) by Aviv Palivoda · 8 years ago
  97. 4a926ca bpo-28518: Start a transaction implicitly before a DML statement (#245) by Berker Peksag · 8 years ago
  98. 228b12e Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever by Serhiy Storchaka · 8 years ago
  99. 00b1ae0 Issue #28985: Update authorizer constants in sqlite3 module by Berker Peksag · 8 years ago
  100. 5ab81d7 Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of dict. by Serhiy Storchaka · 8 years ago