mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 22:14:27 +08:00
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