summaryrefslogtreecommitdiffstats
path: root/Modules/_sqlite
Commit message (Expand)AuthorAgeFilesLines
* bpo-41815: SQLite: segfault if backup called on closed database (GH-22322)Miss Islington (bot)2020-10-041-0/+4
* bpo-41662: Fix bugs in binding parameters in sqlite3 (GH-21998)Miss Islington (bot)2020-09-171-2/+5
* bpo-40737: Fix possible reference leak for sqlite3 initialization (GH-20323)Miss Islington (bot)2020-05-261-8/+12
* bpo-40268: Remove unused structmember.h includes (GH-19530)Victor Stinner2020-04-152-2/+1
* bpo-40268: Remove explicit pythread.h includes (#19529)Victor Stinner2020-04-151-2/+0
* bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (...Serhiy Storchaka2020-04-121-1/+1
* bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data....Serhiy Storchaka2020-04-111-1/+1
* bpo-39652: Truncate the column name after '[' only if PARSE_COLNAMES is set. ...Serhiy Storchaka2020-03-211-7/+22
* bpo-39245: Switch to public API for Vectorcall (GH-18460)Petr Viktorin2020-02-114-8/+8
* bpo-39573: Add Py_SET_TYPE() function (GH-18394)Victor Stinner2020-02-071-1/+1
* bpo-39573: Use Py_TYPE() macro in Modules directory (GH-18393)Victor Stinner2020-02-071-1/+1
* bpo-39496: Remove redundant checks from _sqlite/cursor.c (GH-18270)Alex Henrie2020-02-011-20/+6
* bpo-39497: Remove unused variable from pysqlite_cursor_executescript (GH-18271)Alex Henrie2020-01-301-3/+0
* bpo-39494: Remove extra null terminators from kwlist vars (GH-18267)Alex Henrie2020-01-302-3/+3
* Replace _pysqlite_long_from_int64() with PyLong_FromLongLong() (GH-16882)Sergey Fedoseev2019-10-234-20/+3
* bpo-38185: Fixed case-insensitive string comparison in sqlite3.Row indexing. ...Serhiy Storchaka2019-09-171-31/+31
* bpo-38175: Fix a memory leak in comparison of sqlite3.Row objects. (GH-16155)Serhiy Storchaka2019-09-161-5/+7
* closes bpo-37347: Fix refcount problem in sqlite3. (GH-14268)gescheit2019-07-132-39/+45
* bpo-37547: add _PyObject_CallMethodOneArg (GH-14685)Jeroen Demeyer2019-07-111-4/+4
* bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)Jeroen Demeyer2019-07-083-6/+6
* bpo-37483: add _PyObject_CallOneArg() function (#14558)Jeroen Demeyer2019-07-044-16/+11
* bpo-37406: sqlite3 raises TypeError for wrong operation type (GH-14386)Victor Stinner2019-06-263-13/+5
* bpo-37363: Add audit events for a range of modules (GH-14301)Steve Dower2019-06-241-0/+4
* bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...Jeroen Demeyer2019-05-316-14/+14
* bpo-30262: Don't expose private objects in sqlite3 (GH-1440)Aviv Palivoda2019-05-091-4/+0
* bpo-8677: use PY_SSIZE_T_CLEAN in sqlite (GH-12434)Inada Naoki2019-03-199-0/+9
* bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11...Zackery Spytz2018-12-171-0/+4
* bpo-32788: Better error handling in sqlite3. (GH-3723)Serhiy Storchaka2018-12-105-121/+128
* bpo-34052: Prevent SQLite functions from setting callbacks on exceptions. (GH...Sergey Fedoseev2018-12-051-18/+13
* bpo-33029: Fix signatures of getter and setter functions. (GH-10746)Serhiy Storchaka2018-11-272-4/+6
* bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749)Serhiy Storchaka2018-11-273-11/+11
* bpo-34743: Fix test_database_source_name under SQLite 3.7.9 (GH-9426)Berker Peksag2018-09-201-0/+6
* bpo-32215: Fix performance regression in sqlite3 (GH-8511)Berker Peksag2018-09-201-4/+4
* Remove creation of a list for row_cast_map in pysqlite_cursor_init() (GH-8494)Sergey Fedoseev2018-07-301-5/+2
* Remove some unused code in _pysqlite_query_execute() (GH-8495)Sergey Fedoseev2018-07-271-6/+0
* prefix internal sqlite symbols with _pysqlite_ (GH-8215)Benjamin Peterson2018-07-104-19/+19
* delete some unused pysqlite forward declarations (GH-8211)Benjamin Peterson2018-07-101-4/+0
* bpo-34041: Allow creating deterministic functions in Connection.create_functi...Sergey Fedoseev2018-07-081-4/+28
* Remove tp_print implementation (GH-7857)jdemeyer2018-06-231-6/+1
* bpo-27645, sqlite: Fix integer overflow on sleep (#6594)Victor Stinner2018-04-301-4/+20
* bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH...Siddhesh Poyarekar2018-04-291-1/+1
* Fix error message in sqlite connection thread check. (GH-6028)Takuya Akiba2018-03-261-2/+2
* bpo-27645: Fix version number in 'database in transaction' fallback (GH-6131)Aviv Palivoda2018-03-181-2/+2
* bpo-27645: Add support for native backup facility of SQLite (GH-4238)Emanuele Gaifas2018-03-102-0/+142
* closes bpo-32460: ensure all non-static globals have initializers (#5061)Benjamin Peterson2017-12-313-16/+15
* Add the const qualifier to "char *" variables that refer to literal strings. ...Serhiy Storchaka2017-11-111-1/+1
* bpo-31843: sqlite3.connect() now accepts PathLike objects as database name (#...Anders Lorentsen2017-11-072-4/+9
* bpo-31764: Prevent a crash in sqlite3.Cursor.close() in case the Cursor objec...Oren Milman2017-11-071-0/+5
* bpo-31770: Prevent a crash and refleaks when calling sqlite3.Cursor.__init__(...Oren Milman2017-11-071-8/+7
* bpo-31740: Prevent refleaks when sqlite3.Connection.__init__() is called more...Oren Milman2017-10-101-8/+8