mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-08 23:04:48 +08:00
14 lines
244 B
Python
14 lines
244 B
Python
from jedi import builtin
|
|
|
|
|
|
def test_parse_function_doc_illegal_docstr():
|
|
|
|
def test_func(a):
|
|
"""
|
|
test_func(o
|
|
|
|
doesn't have a closing bracket.
|
|
"""
|
|
|
|
assert ('', '') == builtin._parse_function_doc(test_func)
|