Author: neal.norwitz
Date: Mon Oct  8 07:28:00 2007
New Revision: 58366

Modified:
   python/branches/py3k/Modules/_sqlite/connection.c
   python/branches/py3k/Modules/_sqlite/cursor.c
Log:
Remove unused variables

Modified: python/branches/py3k/Modules/_sqlite/connection.c
==============================================================================
--- python/branches/py3k/Modules/_sqlite/connection.c   (original)
+++ python/branches/py3k/Modules/_sqlite/connection.c   Mon Oct  8 07:28:00 2007
@@ -449,7 +449,6 @@
     const char* val_str;
     PY_LONG_LONG val_int;
     Py_ssize_t buflen;
-    void* raw_buffer;
 
     args = PyTuple_New(argc);
     if (!args) {

Modified: python/branches/py3k/Modules/_sqlite/cursor.c
==============================================================================
--- python/branches/py3k/Modules/_sqlite/cursor.c       (original)
+++ python/branches/py3k/Modules/_sqlite/cursor.c       Mon Oct  8 07:28:00 2007
@@ -296,7 +296,6 @@
     PyObject* converted;
     Py_ssize_t nbytes;
     PyObject* buffer;
-    void* raw_buffer;
     const char* val_str;
     char buf[200];
     const char* colname;
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to