1
0
forked from VimPlug/jedi

some param refactorings.

This commit is contained in:
Dave Halter
2014-05-23 19:54:27 +02:00
parent d9f17beea5
commit a621662440
2 changed files with 9 additions and 10 deletions

View File

@@ -33,10 +33,10 @@ simple(b=1)
simple(1, a=1)
def two_params(a, b):
return b
def two_params(x, y):
return y
two_params(b=2, a=1)
two_params(1, b=2)
two_params(y=2, x=1)
two_params(1, y=2)
#! 10 type-error
two_params(1, a=2)
two_params(1, x=2)