Skip to content

Commit b838b09

Browse files
committed
Continued bump to 3.53
1 parent 7e3ef0d commit b838b09

3 files changed

Lines changed: 3 additions & 8 deletions

File tree

doc/about.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ About
33

44
**APSW** |version| **released** |today|.
55

6-
Use with `SQLite <https://sqlite.org/>`__ 3.51 or later, `Python
6+
Use with `SQLite <https://sqlite.org/>`__ 3.53 or later, `Python
77
<https://www.python.org/downloads/>`__ 3.10 and later.
88

99
APSW has been under continuous development since 2004, and is in the

src/cursor.c

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -762,14 +762,9 @@ APSWCursor_dobinding(APSWCursor *self, int arg, PyObject *obj)
762762
else if (PyObject_TypeCheck(obj, &CArrayBindType) == 1)
763763
{
764764
CArrayBind *cab = (CArrayBind *)obj;
765-
#ifdef APSW_MODIFIED_CARRAY
766765
Py_INCREF(obj);
767-
res = sqlite3_carray_bind_apsw(self->statement->vdbestatement, arg, cab->aData, cab->nData, cab->mFlags,
766+
res = sqlite3_carray_bind_v2(self->statement->vdbestatement, arg, cab->aData, cab->nData, cab->mFlags,
768767
CArrayBind_bind_destructor, obj);
769-
#else
770-
res = sqlite3_carray_bind(self->statement->vdbestatement, arg, cab->aData, cab->nData, cab->mFlags,
771-
SQLITE_TRANSIENT);
772-
#endif
773768
}
774769
#endif
775770
else if (CONVERT_BINDING)

tools/megatest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ def cmp(a, b):
246246
"system",
247247
)
248248

249-
SQLITEVERS = ("3.51.0", "3.51.1", "3.51.2", "3.51.3",)
249+
SQLITEVERS = ("3.53.0", )
250250

251251
BITS = (64, 32)
252252

0 commit comments

Comments
 (0)