1
0
forked from VimPlug/jedi

add a new static_analysis file to test star arguments separately

This commit is contained in:
Dave Halter
2014-05-28 11:08:44 +02:00
parent 11e867d2c1
commit a695166585
3 changed files with 12 additions and 6 deletions

View File

@@ -0,0 +1,10 @@
def simple(a):
return a
def nested(*args):
return simple(*args)
nested(1)
#! 6 type-error-too-few-arguments
nested()