Commit 06d9102e authored by Jeremy Hylton's avatar Jeremy Hylton

Add supportsTransactionalUndo() to BaseStorage.

XXX Why isn't this already there?
parent a3b225ee
......@@ -13,7 +13,7 @@
##############################################################################
"""Handy standard storage machinery
$Id: BaseStorage.py,v 1.31 2003/01/03 22:07:43 jeremy Exp $
$Id: BaseStorage.py,v 1.32 2003/01/09 23:56:28 jeremy Exp $
"""
import cPickle
import ThreadLock, bpthread
......@@ -110,6 +110,9 @@ class BaseStorage(UndoLogCompatible.UndoLogCompatible):
def supportsUndo(self):
return 0
def supportsTransactionalUndo(self):
return 0
def supportsVersions(self):
return 0
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment