From: Gerhard H?r. <gha...@us...> - 2002-09-16 05:42:09
|
Update of /cvsroot/pypgsql/pypgsql In directory usw-pr-cvs1:/tmp/cvs-serv10423 Modified Files: pgint8object.c Log Message: 16SEP2002 gh Reflect the change from windows/ to port/. Index: pgint8object.c =================================================================== RCS file: /cvsroot/pypgsql/pypgsql/pgint8object.c,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** pgint8object.c 5 Oct 2001 08:22:18 -0000 1.11 --- pgint8object.c 16 Sep 2002 05:42:06 -0000 1.12 *************** *** 33,37 **** | Ini Name | | --- ----------------------------------------------------------------- | ! | gh Gerhard Haering <ge...@bi...> | | bga Billy G. Allie <bil...@mu...> | |=======================================================================| --- 33,37 ---- | Ini Name | | --- ----------------------------------------------------------------- | ! | gh Gerhard Haering <ger...@gm...> | | bga Billy G. Allie <bil...@mu...> | |=======================================================================| *************** *** 40,43 **** --- 40,44 ---- | Date Ini Description | | --------- --- ------------------------------------------------------- | + | 16SEP2002 gh Reflect the change from windows/ to port/. | | 01OCT2001 bga Changed all new style comments to original style. | | 26SEP2001 bga Change the constructors so that they return PyObject * | *************** *** 70,78 **** #include "Python.h" - #if defined(_MSC_VER) - /* MS Visual C++ */ - #include "windows/llsupport.h" - #endif - #include "libpqmodule.h" --- 71,74 ---- *************** *** 171,177 **** errno = 0; if (base == 0 && s[0] == '0') ! x = strtoull(s, &end, base); else ! x = strtoll(s, &end, base); if (end == s || !isalnum(Py_CHARMASK((unsigned int)(end[-1])))) goto bad; --- 167,173 ---- errno = 0; if (base == 0 && s[0] == '0') ! x = pg_strtoull(s, &end, base); else ! x = pg_strtoll(s, &end, base); if (end == s || !isalnum(Py_CHARMASK((unsigned int)(end[-1])))) goto bad; |