[Zodb-checkins] CVS: Zope/lib/python/ZODB - BaseStorage.py:1.43
    Jeremy Hylton 
    jeremy at zope.com
       
    Thu Feb 26 17:53:54 EST 2004
    
    
  
Update of /cvs-repository/Zope/lib/python/ZODB
In directory cvs.zope.org:/tmp/cvs-serv17414/ZODB
Modified Files:
	BaseStorage.py 
Log Message:
Make the defaults bools instead of ints.
=== Zope/lib/python/ZODB/BaseStorage.py 1.42 => 1.43 ===
--- Zope/lib/python/ZODB/BaseStorage.py:1.42	Thu Feb 19 13:51:03 2004
+++ Zope/lib/python/ZODB/BaseStorage.py	Thu Feb 26 17:53:23 2004
@@ -31,7 +31,7 @@
 class BaseStorage(UndoLogCompatible):
     _transaction=None # Transaction that is being committed
     _tstatus=' '      # Transaction status, used for copying data
-    _is_read_only = 0
+    _is_read_only = False
 
     def __init__(self, name, base=None):
         self.__name__= name
    
    
More information about the Zodb-checkins
mailing list