summaryrefslogtreecommitdiff
path: root/Modules/_sqlite/statement.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2019-06-26 03:16:24 +0200
committerGitHub <noreply@github.com>2019-06-26 03:16:24 +0200
commitc6a2320e876354ee62cf8149b849bcff9492d38a (patch)
treed5f5042334eb149bf08a01e7f09b429db0360ff2 /Modules/_sqlite/statement.c
parented076ed467264b43ed01a8223ca65b133b590919 (diff)
downloadcpython-git-c6a2320e876354ee62cf8149b849bcff9492d38a.tar.gz
bpo-37406: sqlite3 raises TypeError for wrong operation type (GH-14386)
The sqlite3 module now raises TypeError, rather than ValueError, if operation argument type is not str: execute(), executemany() and calling a connection.
Diffstat (limited to 'Modules/_sqlite/statement.c')
-rw-r--r--Modules/_sqlite/statement.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/_sqlite/statement.c b/Modules/_sqlite/statement.c
index 491294b020..9de8f9b672 100644
--- a/Modules/_sqlite/statement.c
+++ b/Modules/_sqlite/statement.c
@@ -59,6 +59,8 @@ int pysqlite_statement_create(pysqlite_Statement* self, pysqlite_Connection* con
self->st = NULL;
self->in_use = 0;
+ assert(PyUnicode_Check(sql));
+
sql_cstr = PyUnicode_AsUTF8AndSize(sql, &sql_cstr_len);
if (sql_cstr == NULL) {
rc = PYSQLITE_SQL_WRONG_TYPE;