Commit db862e0d authored by Jim Fulton's avatar Jim Fulton

Added new undo method, undoInfo

parent 6f9966c8
...@@ -84,14 +84,14 @@ ...@@ -84,14 +84,14 @@
############################################################################## ##############################################################################
"""Handy standard storage machinery """Handy standard storage machinery
""" """
__version__='$Revision: 1.4 $'[11:-2] __version__='$Revision: 1.5 $'[11:-2]
import time, bpthread import time, bpthread, UndoLogCompatible
from POSException import UndoError from POSException import UndoError
from TimeStamp import TimeStamp from TimeStamp import TimeStamp
z64='\0'*8 z64='\0'*8
class BaseStorage: class BaseStorage(UndoLogCompatible.UndoLogCompatible):
_transaction=None _transaction=None
_serial=z64 _serial=z64
......
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