Update of /cvsroot/pypgsql/pypgsql/pyPgSQL
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16822/pyPgSQL
Modified Files:
PgSQL.py
Log Message:
31JUL2004 bga - Fixed mis-spelling of __comm to __conn. [Bug #1001242]
Index: PgSQL.py
===================================================================
RCS file: /cvsroot/pypgsql/pypgsql/pyPgSQL/PgSQL.py,v
retrieving revision 1.42
retrieving revision 1.43
diff -C2 -d -r1.42 -r1.43
*** PgSQL.py 10 May 2004 03:34:03 -0000 1.42
--- PgSQL.py 31 Jul 2004 20:20:13 -0000 1.43
***************
*** 30,33 ****
--- 30,35 ----
# Date Ini Description |
# --------- --- ------------------------------------------------------- |
+ # 31JUL2004 bga - Fixed mis-spelling of __comm to __conn. |
+ # [Bug #1001242] |
# 09MAY2004 bga - Added a 'debug' attribute to the Connection object. |
# 18JAN2004 bga - Fixed problem with a SELECT ... INTO query. PgSQL |
***************
*** 838,842 ****
return value
elif type(value) is IntType:
! return PgLargeObject(self.__comm.conn, value)
else:
return PgBytea(value)
--- 840,844 ----
return value
elif type(value) is IntType:
! return PgLargeObject(self.__conn.conn, value)
else:
return PgBytea(value)
|