mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 22:14:27 +08:00
12 lines
230 B
Python
12 lines
230 B
Python
from textwrap import dedent
|
|
|
|
|
|
def test_fstring_multiline(Script):
|
|
code = dedent("""\
|
|
'' f'''s{
|
|
str.uppe
|
|
'''
|
|
""")
|
|
c, = Script(code).complete(line=2, column=9)
|
|
assert c.name == 'upper'
|