diff options
| author | Brett Cannon <bcannon@gmail.com> | 2007-11-06 23:14:42 +0000 |
|---|---|---|
| committer | Brett Cannon <bcannon@gmail.com> | 2007-11-06 23:14:42 +0000 |
| commit | c6f600899131377b3c522702ffc453cc80b27420 (patch) | |
| tree | aa221f277a6374ce5fe4d026d28f06a5d256a63a /Modules/_sqlite | |
| parent | 98297ee7815939b124156e438b22bd652d67b5db (diff) | |
| download | cpython-git-c6f600899131377b3c522702ffc453cc80b27420.tar.gz | |
Remove an unused local variable.
Diffstat (limited to 'Modules/_sqlite')
| -rw-r--r-- | Modules/_sqlite/statement.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/_sqlite/statement.c b/Modules/_sqlite/statement.c index 98cc68a853..f81e64299f 100644 --- a/Modules/_sqlite/statement.c +++ b/Modules/_sqlite/statement.c @@ -88,7 +88,6 @@ int pysqlite_statement_bind_parameter(pysqlite_Statement* self, int pos, PyObjec const char* buffer; char* string; Py_ssize_t buflen; - PyObject* stringval; if (parameter == Py_None) { rc = sqlite3_bind_null(self->st, pos); |
