Patchset copy_expert 2/5.

This commit is contained in:
Federico Di Gregorio 2007-05-29 08:14:58 +00:00
parent a23de80c6b
commit 3b2908b51e
2 changed files with 5 additions and 2 deletions

View File

@ -1,6 +1,9 @@
2007-05-29 Federico Di Gregorio <fog@initd.org>
* Applied whitespace normalization patch from David Rushby (copy_expert set.)
* 64 bit fix patch from David Rushby (copy_expert set 2/5.)
* Applied whitespace normalization patch from David Rushby (copy_expert
set 1/5.)
2007-04-25 Federico Di Gregorio <fog@initd.org>

View File

@ -1083,7 +1083,7 @@ static int _psyco_curs_copy_columns(PyObject *columns, char *columnlist)
PyObject *col, *coliter;
Py_ssize_t collen;
char* colname;
int offset = 1;
Py_ssize_t offset = 1;
columnlist[0] = '\0';
if (columns == NULL || columns == Py_None) return 0;