mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-07 22:44:27 +08:00
11 lines
128 B
Python
11 lines
128 B
Python
|
|
def simple(a):
|
|
return a
|
|
|
|
def nested(*args):
|
|
return simple(*args)
|
|
|
|
nested(1)
|
|
#! 6 type-error-too-few-arguments
|
|
nested()
|