[SQL-CVS] SQLObject/SQLObject Style.py,1.4,1.5
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
|
From: <ian...@us...> - 2003-07-15 02:16:10
|
Update of /cvsroot/sqlobject/SQLObject/SQLObject
In directory sc8-pr-cvs1:/tmp/cvs-serv17752
Modified Files:
Style.py
Log Message:
Define true and false for old 2.2 interpreters
Index: Style.py
===================================================================
RCS file: /cvsroot/sqlobject/SQLObject/SQLObject/Style.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Style.py 28 Jun 2003 22:20:37 -0000 1.4
--- Style.py 15 Jul 2003 02:16:07 -0000 1.5
***************
*** 4,7 ****
--- 4,9 ----
"MixedCaseStyle"]
+ True, False = 1==1, 0==1
+
class Style(object):
|