projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0ca73a7
)
fix completion error on 'cy break'
author
Mark Florisson
<markflorisson88@gmail.com>
Wed, 3 Nov 2010 15:41:41 +0000
(16:41 +0100)
committer
Mark Florisson
<markflorisson88@gmail.com>
Wed, 3 Nov 2010 15:41:41 +0000
(16:41 +0100)
Cython/Debugger/libcython.py
patch
|
blob
|
history
diff --git
a/Cython/Debugger/libcython.py
b/Cython/Debugger/libcython.py
index 634aad576b5a3cdd661ae297bbe9f7479880bac9..4d3931b39ad4ff62b4248f34274165bd225bd0e8 100644
(file)
--- a/
Cython/Debugger/libcython.py
+++ b/
Cython/Debugger/libcython.py
@@
-752,6
+752,7
@@
class CyBreak(CythonCommand):
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: