From: Billy G. A. <bal...@us...> - 2003-06-17 01:36:45
|
Update of /cvsroot/pypgsql/pypgsql In directory sc8-pr-cvs1:/tmp/cvs-serv6259 Modified Files: pglargeobject.c Log Message: 05JUN2003 bga Change the name of the quoting function back to _quote. __*__ type names should be restrict to system names. Index: pglargeobject.c =================================================================== RCS file: /cvsroot/pypgsql/pypgsql/pglargeobject.c,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** pglargeobject.c 3 Nov 2002 19:54:32 -0000 1.14 --- pglargeobject.c 17 Jun 2003 01:36:42 -0000 1.15 *************** *** 30,33 **** --- 30,35 ---- | 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__. | | 19OCT2002 gh Made the 'closed' attribute of PgLargeObject an int | *************** *** 1274,1278 **** { "writelines", (PyCFunction)PgLo_writelines, 1, PgLo_writelines_Doc}, { "export", (PyCFunction)PgLo_export, 1, PgLo_export_Doc}, ! { "__quote__", (PyCFunction)PgLo_quote, 1}, { "_pickle", (PyCFunction)PgLo_pickle, 1}, { NULL, NULL } --- 1276,1280 ---- { "writelines", (PyCFunction)PgLo_writelines, 1, PgLo_writelines_Doc}, { "export", (PyCFunction)PgLo_export, 1, PgLo_export_Doc}, ! { "_quote", (PyCFunction)PgLo_quote, 1}, { "_pickle", (PyCFunction)PgLo_pickle, 1}, { NULL, NULL } |