How would you write

if f(x=1):
    print "yes"

using suite-based keyword args?

Good point.
Then we should remove the extra ':' at the end of the function invocation :


if f(x=@>):
                value of x
        print "yes"

if f(@**>):
                x: value of x
        print "yes"
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to