test for dots in params (happens sometimes by accident when generating builtins)

This commit is contained in:
David Halter
2013-07-19 02:40:17 +02:00
parent 6525f9169c
commit 0dfe2f44a5

View File

@@ -42,6 +42,12 @@ def normalfunc():
#? int()
normalfunc()
# dots in param
def f(seq1...=None):
return seq1
#? int()
f(1)
# first part not complete (raised errors)
if a