COMMITS
/ Modules/_sqlite/statement.c December 27, 2020
E
bpo-1635741: sqlite3 uses Py_NewRef/Py_XNewRef (GH-23170)
Erlend Egeberg Aasland committed
October 1, 2020
E
bpo-41861: Convert _sqlite3 RowType and StatementType to heap types (GH-22444)
Erlend Egeberg Aasland committed
September 28, 2020
E
bpo-41861: Convert _sqlite3 PrepareProtocolType to heap type (GH-22428)
Erlend Egeberg Aasland committed
September 17, 2020
S
bpo-41662: Fix bugs in binding parameters in sqlite3 (GH-21998)
Serhiy Storchaka committed
September 4, 2020
S
bpo-41638: Improve ProgrammingError message for absent parameter. (GH-21999)
Serhiy Storchaka committed
June 26, 2019
V
bpo-37406: sqlite3 raises TypeError for wrong operation type (GH-14386)
Victor Stinner committed
May 31, 2019
J
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464)
Jeroen Demeyer committed
December 10, 2018
S
bpo-32788: Better error handling in sqlite3. (GH-3723)
Serhiy Storchaka committed
September 20, 2018
B
bpo-32215: Fix performance regression in sqlite3 (GH-8511)
Berker Peksag committed
September 20, 2017
B
closes bpo-31525: require sqlite3_prepare_v2 (#3666)
Benjamin Peterson committed
March 3, 2017
A
bpo-9303: Migrate sqlite3 module to _v2 API to enhance performance (#359)
Aviv Palivoda committed
February 26, 2017
B
bpo-28518: Start a transaction implicitly before a DML statement (#245)
Berker Peksag committed
November 20, 2016
S
Added the const qualifier to char* variables that refer to readonly internal
Serhiy Storchaka committed
S
Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize
Serhiy Storchaka committed
September 11, 2016
B
Issue #10740: sqlite3 no longer implicitly commit an open transaction before DDL statements
Berker Peksag committed
February 2, 2015
S
Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer()
Serhiy Storchaka committed
September 11, 2014
S
Issue #21147: sqlite3 now raises an exception if the request contains a null
Serhiy Storchaka committed
November 18, 2013
V
sqlite: Use Py_ssize_t to store a size instead of an int
Victor Stinner committed
V
sqlite: raise an OverflowError if a string or a BLOB is longer than INT_MAX
Victor Stinner committed
October 19, 2013
S
Issue #1772673: The type of `char*` arguments now changed to `const char*`.
Serhiy Storchaka committed
August 16, 2013
S
Issue #18701: Remove support of old CPython versions (<3.0) from C code.
Serhiy Storchaka committed
February 7, 2013
S
Issue #17073: Fix some integer overflows in sqlite3 module.
Serhiy Storchaka committed
S
Issue #17073: Fix some integer overflows in sqlite3 module.
Serhiy Storchaka committed
February 9, 2012
P
Undocument and clean up sqlite3.OptimizedUnicode
Petri Lehtinen committed
February 1, 2012
P
Merge branch 3.2
Petri Lehtinen committed
P
sqlite3: Handle strings with embedded zeros correctly
Petri Lehtinen committed
February 22, 2011
B
Issue #8914: fix various warnings from the Clang static analyzer v254.
Brett Cannon committed
September 3, 2010
F
Welcome to the UTF-8 world.
Florent Xicluna committed
May 19, 2010
V
Issue #6697: Check that _PyUnicode_AsString() result is not NULL in _sqlite
Victor Stinner committed
March 5, 2010
G
Merged new pysqlite version 2.6.0 from trunk.
Gerhard Häring committed
February 2, 2009
M
Issue #1717: rename tp_compare to tp_reserved. I'll change the
Mark Dickinson committed
September 22, 2008
G
Issue #3659: Values of string subclasses were not handled correctly when used
Gerhard Häring committed
September 13, 2008
B
Merged revisions 66394,66404,66412,66414,66424-66436 via svnmerge from
Benjamin Peterson committed
August 7, 2008
M
Rename PyUnicode_AsString -> _PyUnicode_AsString and
Marc-André Lemburg committed
May 26, 2008
C
Renamed PyString to PyBytes
Christian Heimes committed
C
Renamed PyBytes to PyByteArray
Christian Heimes committed
May 4, 2008
March 29, 2008
G
Bring sqlite3 module up-to-date with what's now in 2.6. Almost. I intentionally
Gerhard Häring committed
December 19, 2007
C
#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.
Christian Heimes committed
December 14, 2007
C
Merged revisions 59465-59487 via svnmerge from
Christian Heimes committed
November 6, 2007
B
Remove an unused local variable.
Brett Cannon committed
G
Merging the py3k-pep3137 branch back into the py3k branch.
Guido van Rossum committed
October 23, 2007
G
#1316: remove redundant PyLong_Check calls when PyInt_Check was already called.
Georg Brandl committed
October 8, 2007
G
Breaking ground for PEP 3137 implementation:
Guido van Rossum committed
August 29, 2007
G
Add PyUnicode_AsStringAndSize(), which is like PyUnicode_AsString() but
Guido van Rossum committed
G
"Fix" a few places that were using PyObject_AsCharBuffer() to convert a string
Guido van Rossum committed
August 10, 2007
G
Make the sqlite tests pass.
Gerhard Häring committed
July 21, 2007
M
Merged revisions 56467-56482 via svnmerge from
Martin v. Löwis committed
May 9, 2007
G
Use AsCharBuffer to get C strings out of Python strings.
Guido van Rossum committed
January 15, 2007
T
Merged revisions 53304-53433,53435-53450 via svnmerge from
Thomas Wouters committed