From: Billy G. A. <bal...@us...> - 2002-12-06 05:29:41
|
Update of /cvsroot/pypgsql/pypgsql In directory sc8-pr-cvs1:/tmp/cvs-serv5233 Modified Files: Announce ChangeLog Log Message: 06DEC2002 bga - Updated files with descriptions of some last minute changes. Index: Announce =================================================================== RCS file: /cvsroot/pypgsql/pypgsql/Announce,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** Announce 1 Dec 2002 20:16:51 -0000 1.21 --- Announce 6 Dec 2002 05:29:37 -0000 1.22 *************** *** 120,124 **** Changes to README ----------------- ! * Updates for 2.3rc1. * Converted the whole document into reStructuredText, so we can easily built a HTML version using docutils (http://docutils.sf.net/). --- 120,124 ---- Changes to README ----------------- ! * Updates for 2.3. * Converted the whole document into reStructuredText, so we can easily built a HTML version using docutils (http://docutils.sf.net/). *************** *** 131,134 **** --- 131,146 ---- Changes to PgSQL.py ------------------- + * Fixed various problems with the PgNumeric constructor and formatting + routines. + * Fixed problems with new __setupTransaction function: | + 1. Made it a method of Connection, not Cursor. + 2. inTransaction was only set if TransactionLevel was set. + * Fixed instances where method name was incorrect: + Connection__gcCursor -> _Connection__gcCursor + Connection__closeCursor -> _Connection__closeCursor + * Cleaned up code where there was unneeded references to conn in Connection + class. | + * Handle the new '__quote__' method for arrays, too. + * Still handle '_quote' methods for backwards compatibility. * Fixed changed PG_TIMESTAMP oid, added PG_TIMESTAMPTZ and PG_REFCURSOR oids. * Reference cursors are now type-casted into cursor objects. Index: ChangeLog =================================================================== RCS file: /cvsroot/pypgsql/pypgsql/ChangeLog,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** ChangeLog 1 Dec 2002 18:30:23 -0000 1.18 --- ChangeLog 6 Dec 2002 05:29:37 -0000 1.19 *************** *** 37,40 **** --- 37,52 ---- Changes to PgSQL.py ------------------- + * Fixed various problems with the PgNumeric constructor and formatting + routines. + * Fixed problems with new __setupTransaction function: | + 1. Made it a method of Connection, not Cursor. + 2. inTransaction was only set if TransactionLevel was set. + * Fixed instances where method name was incorrect: + Connection__gcCursor -> _Connection__gcCursor + Connection__closeCursor -> _Connection__closeCursor + * Cleaned up code where there was unneeded references to conn in Connection + class. | + * Handle the new '__quote__' method for arrays, too. + * Still handle '_quote' methods for backwards compatibility. * Fixed changed PG_TIMESTAMP oid, added PG_TIMESTAMPTZ and PG_REFCURSOR oids. * Reference cursors are now type-casted into cursor objects. |