forked from VimPlug/jedi
Return statements should be handled correctly if the return_stmt is only a return without an expression behind it.
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
def x():
|
||||
return
|
||||
|
||||
#? None
|
||||
x()
|
||||
|
||||
def array(first_param):
|
||||
#? ['first_param']
|
||||
first_param
|
||||
|
||||
Reference in New Issue
Block a user