[Python-3000] PEP 3102

Dj Gilcrease digitalxero at gmail.com
Fri Feb 15 18:42:39 CET 2008


On Fri, Feb 15, 2008 at 9:37 AM, Dj Gilcrease <digitalxero at gmail.com> 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


More information about the Python-3000 mailing list