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

@@ -13,12 +13,6 @@ simple()
simple(1, 2)
def nested(*args):
return simple(*args)
nested(1)
#! 6 type-error-too-few-arguments
nested()
#! 10 type-error-too-many-arguments
simple(1, 2, 3)