- 000
learning the example patterns/behavioral/memento.py.
Transactional is defined as a descriptor, this looks more complicated
class Transactional:
def __init__(self, method):
self.method = method
def __get__(self, obj, T):
def transaction(*args, **kwargs):
state = me...