>>> def g(*arg):
... return arg
...
>>> g('foo', 'bar')
('foo', 'bar')
>>> # seems reasonable
...
>>> g(g('foo', 'bar'))
(('foo', 'bar'),)
>>> # not so good, what g should return to get rid of the outer tupleTV -- http://mail.python.org/mailman/listinfo/python-list
