On Fri, Feb 15, 2008 at 9:37 AM, Dj Gilcrease <[EMAIL PROTECTED]> wrote: > The intent is to make it so (Assuming arg1 and arg2 are positional > only) you cannot do test(arg3=9, arg1=7, arg2=8), thus you would be > required to do test(7, 8, 9) {since doing test(7, 8, arg3=9) would > raise an error of positional arg being set by position and keyword at > the same time} >
Little correction, test(7, 8, arg3=9) should work and does not raise the error I though it did _______________________________________________ Python-3000 mailing list Python-3000@python.org http://mail.python.org/mailman/listinfo/python-3000 Unsubscribe: http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com