Fix an issue with whitespace after a dot at the end of a file, also part of #1748

This commit is contained in:
Dave Halter
2021-11-17 00:31:40 +01:00
parent 8bc9c8cda2
commit 84d086a47b
3 changed files with 15 additions and 1 deletions

View File

@@ -284,6 +284,13 @@ def doctest_with_space():
import_issu
"""
def doctest_issue_github_1748():
"""From GitHub #1748
#? 10 []
This. Al
"""
pass
def docstring_rst_identifiers():
"""

View File

@@ -457,3 +457,7 @@ def test_module_completions(Script, module):
# Just make sure that there are no errors
c.type
c.docstring()
def test_whitespace_at_end_after_dot(Script):
assert 'strip' in [c.name for c in Script('str. ').complete()]