Start debugging the beast.

This commit is contained in:
Dave Halter
2016-08-23 18:24:58 +02:00
parent 1126a6c871
commit 1e5ad467d3
4 changed files with 45 additions and 26 deletions

View File

@@ -22,12 +22,12 @@ def test_add_to_end():
self.x = 3
class Two(Abc):
def h(self):
def g(self):
self
""") # ^ here is the first completion
b = " def g(self):\n" \
b = " def h(self):\n" \
" self."
assert jedi.Script(a, 8, 12, 'example.py').completions()
assert jedi.Script(a + b, path='example.py').completions()