class MemDictStore: def __init__(self): self.store = {} def get(self, k): return self.store.get(k) def put(self, k, v): self.store[k] = v