1
0
forked from VimPlug/jedi

Whitespace before brackets should still show call signatures.

This commit is contained in:
Dave Halter
2015-02-24 01:48:25 +01:00
parent 0ae74a7666
commit b8386d29d5
2 changed files with 5 additions and 2 deletions

View File

@@ -174,6 +174,9 @@ class TestCallSignatures(TestCase):
def test_unterminated_strings(self):
self._run('str(";', 'str', 0)
def test_whitespace_before_bracket(self):
self._run('str (";', 'str', 0)
class TestParams(TestCase):
def params(self, source, line=None, column=None):