On Mon, May 12, 2008 at 12:19 PM, Guillermo
<[EMAIL PROTECTED]> wrote:
>  def func1(*args):
>     print args # (1, 2, 3)
>     func2(args)

change this line to:
    func2(*args)

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

Reply via email to