Update of /cvsroot/pypgsql/pypgsql
In directory usw-pr-cvs1:/tmp/cvs-serv10928
Modified Files:
libpqmodule.c
Log Message:
19OCT2002 gh Fixed the format string of ParseTuple in libPQbool_FromInt.
This closes a bug that appeared on Linux/Alpha (#625121).
Index: libpqmodule.c
===================================================================
RCS file: /cvsroot/pypgsql/pypgsql/libpqmodule.c,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** libpqmodule.c 2 Oct 2002 04:08:37 -0000 1.24
--- libpqmodule.c 19 Oct 2002 14:30:00 -0000 1.25
***************
*** 32,35 ****
--- 32,38 ----
| Date Ini Description |
| --------- --- ------------------------------------------------------- |
+ | 19OCT2002 gh Fixed the format string of ParseTuple in |
+ | libPQbool_FromInt. This closes a bug that appeared on |
+ | Linux/Alpha (#625121). |
| 01OCT2002 gh HAVE_LONG_LONG => HAVE_LONG_LONG_SUPPORT |
| 21APR2002 gh Removed special escaping of control characters in |
***************
*** 917,921 ****
long l;
! if (!PyArg_ParseTuple(args, "i:BooleanFromInteger", &l))
return NULL;
--- 920,924 ----
long l;
! if (!PyArg_ParseTuple(args, "l:BooleanFromInteger", &l))
return NULL;
|