mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-08 14:54:47 +08:00
inline tests
This commit is contained in:
8
test/refactor/inline.py
Normal file
8
test/refactor/inline.py
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
# --- simple
|
||||||
|
def test():
|
||||||
|
#? 4
|
||||||
|
a = (30 + b, c) + 1
|
||||||
|
return test(100, a)
|
||||||
|
# +++
|
||||||
|
def test():
|
||||||
|
return test(100, (30 + b, c) + 1)
|
||||||
Reference in New Issue
Block a user