Tor Norbye | 3a2425a5 | 2013-11-04 10:16:08 -0800 | [diff] [blame] | 1 | def f1(*args, <error descr="Multiple * arguments are not allowed">*</error>, a): |
2 | pass | ||||
3 | |||||
4 | def f2(*, <error descr="Multiple * arguments are not allowed">*</error>, d): | ||||
5 | pass | ||||
6 | |||||
7 | def f3(*, <error descr="Multiple * arguments are not allowed">*args</error>): | ||||
8 | pass |