>>> 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 tuple

TV
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to