Ooops. I left out an "*" on a statement in the new aslist() function. I
should have written:

    def aslist(*args):
       return list(*args) # corrected

    def f(arg):
        args = aslist(arg)
        ...

Sorry,
Martin

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

Reply via email to