Skip to content

Commit

Permalink
Merge pull request #311 from pymssql/method-signature-mismatch-cython022
Browse files Browse the repository at this point in the history
Fix method signature declaration/definition mismatch error.
  • Loading branch information
ramiro committed Apr 5, 2015
2 parents 8e02ad9 + 6206686 commit 7d67df6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _mssql.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,7 @@ cdef class MSSQLConnection:
return (<char *>data)[:length]

cdef int convert_python_value(self, object value, BYTE **dbValue,
int *dbtype, int *length) except 1:
int *dbtype, int *length) except -1:
log("_mssql.MSSQLConnection.convert_python_value()")
cdef int *intValue
cdef double *dblValue
Expand Down

0 comments on commit 7d67df6

Please sign in to comment.