1. a1f401a bpo-42264: Deprecate sqlite3.OptimizedUnicode (GH-23163) by Erlend Egeberg Aasland · 3 years, 10 months ago
  2. bfee9fa bpo-41815: SQLite: segfault if backup called on closed database (GH-22322) by Peter McCormick · 4 years ago
  3. 0b419b7 bpo-41662: Fix bugs in binding parameters in sqlite3 (GH-21998) by Serhiy Storchaka · 4 years ago
  4. 207c321 bpo-40744: Drop support for SQLite pre 3.7.3 (GH-20909) by Erlend Egeberg Aasland · 4 years ago
  5. fcce8c6 bpo-40275: Use new test.support helper submodules in tests (GH-21772) by Hai Shi · 4 years, 1 month ago
  6. 598a951 bpo-40275: Use new test.support helper submodules in tests (GH-21764) by Hai Shi · 4 years, 1 month ago
  7. c610d97 bpo-40784: Fix sqlite3 deterministic test (GH-20448) by Erlend Egeberg Aasland · 4 years, 3 months ago
  8. b146568 bpo-39652: Truncate the column name after '[' only if PARSE_COLNAMES is set. (GH-18942) by Serhiy Storchaka · 4 years, 5 months ago
  9. f669581 bpo-38185: Fixed case-insensitive string comparison in sqlite3.Row indexing. (GH-16190) by Serhiy Storchaka · 5 years ago
  10. 8debfa5 bpo-38175: Fix a memory leak in comparison of sqlite3.Row objects. (GH-16155) by Serhiy Storchaka · 5 years ago
  11. b9a0376 closes bpo-37347: Fix refcount problem in sqlite3. (GH-14268) by gescheit · 5 years ago
  12. c6a2320 bpo-37406: sqlite3 raises TypeError for wrong operation type (GH-14386) by Victor Stinner · 5 years ago
  13. 842acaa bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11175) by Zackery Spytz · 6 years ago
  14. fc662ac bpo-32788: Better error handling in sqlite3. (GH-3723) by Serhiy Storchaka · 6 years ago
  15. 5b25f1d bpo-34052: Prevent SQLite functions from setting callbacks on exceptions. (GH-8113) by Sergey Fedoseev · 6 years ago
  16. 0830858 bpo-34041: Allow creating deterministic functions in Connection.create_function() (GH-8086) by Sergey Fedoseev · 6 years ago
  17. 61f82e0 Spelling fixes to docs, docstrings, and comments (GH-6374) by Ville Skyttä · 6 years ago
  18. bbf7bb7 bpo-27645: Fix version number in 'database in transaction' fallback (GH-6131) by Aviv Palivoda · 6 years ago
  19. 7280a4e bpo-27645: Skip test_bad_target_in_transaction if SQLite == 3.8.7.1 (GH-6067) by Berker Peksag · 6 years ago
  20. d7aed41 bpo-27645: Add support for native backup facility of SQLite (GH-4238) by Emanuele Gaifas · 6 years ago
  21. 4fc4def Remove unused var from CheckCancelOperation test (GH-4317) by Simon Willison · 7 years ago
  22. a22a127 bpo-31843: sqlite3.connect() now accepts PathLike objects as database name (#4299) by Anders Lorentsen · 7 years ago
  23. edb13ae bpo-31764: Prevent a crash in sqlite3.Cursor.close() in case the Cursor object is uninitialized (#3958) by Oren Milman · 7 years ago
  24. e56ab74 bpo-31770: Prevent a crash and refleaks when calling sqlite3.Cursor.__init__() more than once (#3968) by Oren Milman · 7 years ago
  25. a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 7 years ago
  26. 0e6cb2e bpo-26187: Test that set_trace_callback() is not called multiple times (GH-461) by Aviv Palivoda · 7 years ago
  27. 4a926ca bpo-28518: Start a transaction implicitly before a DML statement (#245) by Berker Peksag · 8 years ago
  28. 75d9016 Issue #29123: Merge from 3.5 by Berker Peksag · 8 years ago
  29. b47913f Issue #29123: Make CheckSqlTimestamp more robust by Berker Peksag · 8 years ago
  30. 22805ca Issue #27897: Fixed possible crash in sqlite3.Connection.create_collation() by Serhiy Storchaka · 8 years ago
  31. 407ac47 Issue #27897: Fixed possible crash in sqlite3.Connection.create_collation() by Serhiy Storchaka · 8 years ago
  32. ab994ed Issue #10740: sqlite3 no longer implicitly commit an open transaction before DDL statements by Berker Peksag · 8 years ago
  33. 4bf580d Issue #21250: Add tests for SQLite's ON CONFLICT clause by Berker Peksag · 8 years ago
  34. 2891492 Issue #27881: Fixed possible bugs when setting sqlite3.Connection.isolation_level. by Serhiy Storchaka · 8 years ago
  35. 3580b03 Issue #21250: Merge from 3.5 by Berker Peksag · 8 years ago
  36. af0628e Issue #27881: Fixed possible bugs when setting sqlite3.Connection.isolation_level. by Serhiy Storchaka · 8 years ago
  37. 8631da6 Issue #27861: Fixed a crash in sqlite3.Connection.cursor() when a factory by Serhiy Storchaka · 8 years ago
  38. ef113cd Issue #27861: Fixed a crash in sqlite3.Connection.cursor() when a factory by Serhiy Storchaka · 8 years ago
  39. 6ed442c Issue #10513: Merge from 3.5 by Berker Peksag · 8 years ago
  40. cc9afa9 Issue #10513: Fix a regression in Connection.commit() by Berker Peksag · 8 years ago
  41. d7f3cdd Issue #21718: Merge from 3.5 by Berker Peksag · 8 years ago
  42. 6afe858 Issue #21718: cursor.description is now available for queries using CTEs by Berker Peksag · 8 years ago
  43. e0b70cd Issue #16864: Cursor.lastrowid now supports REPLACE statement by Berker Peksag · 8 years ago
  44. f85bce7 Mark tests as skipped when a SQLite version is not supported by Berker Peksag · 8 years ago
  45. 2b50899 Remove empty setUp and tearDown methods from sqlite3 tests by Berker Peksag · 8 years ago
  46. 48b5c98 Replace more boilerplate code with modern unittest features in sqlite3 tests by Berker Peksag · 8 years ago
  47. 1003b34 Modernize sqlite3 tests by Berker Peksag · 8 years ago
  48. 7bea234 Issue #27190: Raise NotSupportedError if sqlite3 is older than 3.3.1 by Berker Peksag · 8 years ago
  49. c415440 Issue #27188: Fix various sqlite3 documentation errors by Berker Peksag · 8 years ago
  50. 6a7b3a7 Issue #26778: Fixed "a/an/and" typos in code comment and documentation. by Serhiy Storchaka · 8 years ago
  51. fa0f62d Issue #23758: Improve num_params docs of create_{function,aggregate} functions by Berker Peksag · 8 years ago
  52. e79ec70 Issue #24257: Fixed incorrect uses of PyObject_IsInstance(). by Serhiy Storchaka · 9 years ago
  53. 08d230a Issue #24257: Fixed incorrect uses of PyObject_IsInstance(). by Serhiy Storchaka · 9 years ago
  54. 72e731c Issue #13583: sqlite3.Row now supports slice indexing. by Serhiy Storchaka · 9 years ago
  55. a60c2fe Issue #23641: Cleaned out legacy dunder names from tests and docs. by Serhiy Storchaka · 9 years ago
  56. 42d67af Issue #21147: sqlite3 now raises an exception if the request contains a null by Serhiy Storchaka · 10 years ago
  57. 47a9813 Issue #10203: sqlite3.Row now truly supports sequence protocol. In particulr by Serhiy Storchaka · 10 years ago
  58. a6d018a merge 3.3 (#20901) by Benjamin Peterson · 10 years ago
  59. 966f2fc weaken callback count inequality (closes #20901) by Benjamin Peterson · 10 years ago
  60. 5ef48d9 merge 3.3 (#20080) by Benjamin Peterson · 11 years ago
  61. 29352c4 add missing test assertion (closes #20080) by Benjamin Peterson · 11 years ago
  62. 08263f1 (Merge 3.3) Issue #20026: Fix the sqlite module to handle correctly invalid by Victor Stinner · 11 years ago
  63. cb1f74e Issue #20026: Fix the sqlite module to handle correctly invalid isolation level by Victor Stinner · 11 years ago
  64. d4b75bf Issue #19601: Use specific asserts in sqlite3 tests. by Serhiy Storchaka · 11 years ago
  65. 78ee078 Issue #19601: Use specific asserts in sqlite3 tests. by Serhiy Storchaka · 11 years ago
  66. e0c6916 #18741: merge with 3.3. by Ezio Melotti · 11 years ago
  67. b5bc353 #18741: fix more typos. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
  68. cd171c8 Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) by Brett Cannon · 11 years ago
  69. 0a14066 Issue #18200: Update the stdlib (except tests) to use ModuleNotFoundError. by Brett Cannon · 11 years ago
  70. e55aa69 Issue #14720: Enhance sqlite3 microsecond conversion, document its behavior by Petri Lehtinen · 12 years ago
  71. 6401ad6 Issue #14720: Enhance sqlite3 microsecond conversion, document its behavior by Petri Lehtinen · 12 years ago
  72. 5f79409 Issue #14720: Enhance sqlite3 microsecond conversion, document its behavior by Petri Lehtinen · 12 years ago
  73. e460f26 Issue #14720: sqlite3: Convert datetime microseconds correctly by Petri Lehtinen · 12 years ago
  74. f484efd Issue #14720: sqlite3: Convert datetime microseconds correctly by Petri Lehtinen · 12 years ago
  75. 8b94514 Issue #14720: sqlite3: Convert datetime microseconds correctly by Petri Lehtinen · 12 years ago
  76. 902fc8b Issue #13773: sqlite3.connect() gets a new `uri` parameter to pass the filename as a URI, allowing to pass custom options. by Antoine Pitrou · 12 years ago
  77. 2efdc90 Issue #17073: Fix some integer overflows in sqlite3 module. by Serhiy Storchaka · 12 years ago
  78. 3cf96ac Issue #17073: Fix some integer overflows in sqlite3 module. by Serhiy Storchaka · 12 years ago
  79. d394455 merge #13934: document sqlite version strings, use correct one in test. by R David Murray · 12 years ago
  80. 3f7beb9 #13934: document sqlite version strings, use correct one in test. by R David Murray · 12 years ago
  81. 7bd0486 merge #15545: fix sqlite3.iterdump regression on unsortable row_factory objects. by R David Murray · 12 years ago
  82. b523129 #15545: fix sqlite3.iterdump regression on unsortable row_factory objects. by R David Murray · 12 years ago
  83. 8b24506 Merge branch '3.2' by Petri Lehtinen · 13 years ago
  84. 4fe85ab sqlite3: Fix 64-bit integer handling in user functions on 32-bit architectures by Petri Lehtinen · 13 years ago
  85. aa2c670 Merge branch '3.2' by Petri Lehtinen · 13 years ago
  86. c86d9e2 Fix a variable scoping error in an sqlite3 test by Petri Lehtinen · 13 years ago
  87. c7551a1 Merge branch '3.2' by Petri Lehtinen · 13 years ago
  88. 51d04d1 Fix sqlite3.Connection.iterdump on tables/fields with reserved names or quotes by Petri Lehtinen · 13 years ago
  89. bc35beb Undocument and clean up sqlite3.OptimizedUnicode by Petri Lehtinen · 13 years ago
  90. 4a84f58 Issue #10811: Fix recursive usage of cursors. Instead of crashing, raise a ProgrammingError now. by Petri Lehtinen · 13 years ago
  91. f854799 Make sqlite3 tests editable with Emacs by Petri Lehtinen · 13 years ago
  92. 8940f62 Merge branch 3.2 by Petri Lehtinen · 13 years ago
  93. 023fe33 sqlite3: Handle strings with embedded zeros correctly by Petri Lehtinen · 13 years ago
  94. 502ff6c Issue #10811: Use TestCase.assertRaises() in the new test by Victor Stinner · 13 years ago
  95. 936d518 #10811: Fix recursive usage of cursors. Instead of crashing, raise a ProgrammingError now. by Gerhard Haering · 13 years ago
  96. f4e1810 Fix TraceCallbackTests to not use bound parameters (followup to issue #11688) by Antoine Pitrou · 13 years ago
  97. 43b2168 Improve error message in test by Antoine Pitrou · 13 years ago
  98. 5bfa062 Issue #11688: Add sqlite3.Connection.set_trace_callback(). Patch by Torsten Landschoff. by Antoine Pitrou · 13 years ago
  99. 8f36af7 Normalize the encoding names for Latin-1 and UTF-8 to 'latin-1' and 'utf-8'. by Marc-André Lemburg · 14 years ago
  100. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago