Update of /cvsroot/pypgsql/pypgsql
In directory sc8-pr-cvs1:/tmp/cvs-serv5867
Modified Files:
pgboolean.c
Log Message:
05JUN2003 bga Change the name of the quoting function back to _quote.
__*__ type names should be restrict to system names.
Index: pgboolean.c
===================================================================
RCS file: /cvsroot/pypgsql/pypgsql/pgboolean.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** pgboolean.c 3 Nov 2002 19:54:32 -0000 1.11
--- pgboolean.c 17 Jun 2003 01:34:20 -0000 1.12
***************
*** 33,36 ****
--- 33,38 ----
| Date Ini Description |
| --------- --- ------------------------------------------------------- |
+ | 05JUN2003 bga Change the name of the quoting function back to _quote. |
+ | __*__ type names should be restrict to system names. |
| 02NOV2002 bga Change the name of the quoting function to __quote__. |
| 26SEP2001 bga Change the constructors so that they return PyObject * |
***************
*** 251,255 ****
static PyMethodDef bool_methods[] = {
! { "__quote__", (PyCFunction)bool_quote, 1 },
{ NULL, NULL }
};
--- 253,257 ----
static PyMethodDef bool_methods[] = {
! { "_quote", (PyCFunction)bool_quote, 1 },
{ NULL, NULL }
};
|