Skip to content

Commit

Permalink
fix completion error on 'cy break'
Browse files Browse the repository at this point in the history
  • Loading branch information
markflorisson committed Nov 3, 2010
1 parent 0ca73a7 commit 0aca01f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Cython/Debugger/libcython.py
Expand Up @@ -752,6 +752,7 @@ def complete(self, text, word):

words = text.strip().split()
if words and '.' in words[-1]:
lastword = words[-1]
compl = [n for n in self.cy.functions_by_qualified_name
if n.startswith(lastword)]
else:
Expand Down

0 comments on commit 0aca01f

Please sign in to comment.