IDEA-CR-24258 check that parentheses belong to an argument list

This commit is contained in:
Ekaterina Tuzova
2017-09-25 17:37:03 +03:00
parent 283b3b719b
commit ffadc03f83
3 changed files with 19 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
# directly in function
def foo():
"<the_doc>Doc of foo."
pass
def bar(param):
pass
bar((1, foo<the_ref>))