[SQL-CVS] SQLObject/SQLObject SQLObject.py,1.29,1.30
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
|
From: <ian...@us...> - 2003-04-29 09:47:51
|
Update of /cvsroot/sqlobject/SQLObject/SQLObject
In directory sc8-pr-cvs1:/tmp/cvs-serv22936/SQLObject
Modified Files:
SQLObject.py
Log Message:
Changed _cacheValues default back to True
Index: SQLObject.py
===================================================================
RCS file: /cvsroot/sqlobject/SQLObject/SQLObject/SQLObject.py,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -d -r1.29 -r1.30
*** SQLObject.py 29 Apr 2003 08:15:11 -0000 1.29
--- SQLObject.py 29 Apr 2003 09:47:48 -0000 1.30
***************
*** 281,285 ****
# values fetched from the database. We make sure
# it's set (default 1).
! _cacheValues = False
# The _defaultOrder is used by SelectResults
--- 281,285 ----
# values fetched from the database. We make sure
# it's set (default 1).
! _cacheValues = True
# The _defaultOrder is used by SelectResults
|