Remove unused variables

This commit is contained in:
Neal Norwitz 2007-10-08 05:28:00 +00:00
parent 0ea230b80a
commit 14ef70b175
2 changed files with 0 additions and 2 deletions

View File

@ -449,7 +449,6 @@ PyObject* _pysqlite_build_py_params(sqlite3_context *context, int argc, sqlite3_
const char* val_str;
PY_LONG_LONG val_int;
Py_ssize_t buflen;
void* raw_buffer;
args = PyTuple_New(argc);
if (!args) {

View File

@ -296,7 +296,6 @@ PyObject* _pysqlite_fetch_one_row(pysqlite_Cursor* self)
PyObject* converted;
Py_ssize_t nbytes;
PyObject* buffer;
void* raw_buffer;
const char* val_str;
char buf[200];
const char* colname;