Hello all, here's a function I would like to have: <hypothetical code> >>> m = [1,2] >>> m >>> [1,2] >>> from watcher import watch >>> watch(m) >>> m.append(3) >>> "hey, you changed variable m!, new value is [1,2,3]" </hypothetical code> Is this possible? How would this be called? Anton.