mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-07 14:34:31 +08:00
10 lines
190 B
Python
10 lines
190 B
Python
from textwrap import dedent
|
|
from jedi import Script
|
|
|
|
|
|
def test_in_whitespace():
|
|
code = dedent('''
|
|
def x():
|
|
pass''')
|
|
assert len(Script(code, column=2).completions()) > 20
|