On 2/8/07, Leif K-Brooks <[EMAIL PROTECTED]> wrote: > def obj(): > result = {'data': 'hello'} > result['add'] = adder(result) > return result > > def adder(obj): > def add(value): > obj['data'] += value > return add > > if __name__ == '__main__': > test = obj() > test['add']('world') > print test['data']
Nice :) Does anybody know how this would look in c code ? -- http://mail.python.org/mailman/listinfo/python-list