mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 05:54:25 +08:00
Some more extract improvements
This commit is contained in:
@@ -1,10 +1,12 @@
|
||||
# -------------------------------------------------- in-module-1
|
||||
glob = 3
|
||||
#? 11 text {'new_name': 'a'}
|
||||
test(100, (30 + b, c) + 1)
|
||||
test(100, (glob.a + b, c) + 1)
|
||||
# ++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
glob = 3
|
||||
#? 11 text {'new_name': 'a'}
|
||||
def a(b):
|
||||
return 30 + b
|
||||
return glob.a + b
|
||||
|
||||
|
||||
test(100, (a(b), c) + 1)
|
||||
|
||||
Reference in New Issue
Block a user