[SQL-CVS] SQLObject/SQLObject SQLBuilder.py,1.13,1.14
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: <ian...@us...> - 2003-11-04 02:25:36
|
Update of /cvsroot/sqlobject/SQLObject/SQLObject In directory sc8-pr-cvs1:/tmp/cvs-serv1760 Modified Files: SQLBuilder.py Log Message: Added operation.eq/IS for DBMConnection, as noted by Chris Atlee Index: SQLBuilder.py =================================================================== RCS file: /cvsroot/sqlobject/SQLObject/SQLObject/SQLBuilder.py,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** SQLBuilder.py 24 Oct 2003 19:18:52 -0000 1.13 --- SQLBuilder.py 4 Nov 2003 02:25:33 -0000 1.14 *************** *** 211,214 **** --- 211,215 ---- ">": operator.gt, "IN": operator.contains, + "IS": operator.eq, } |