Kaydet (Commit) 993fe3f0 authored tarafından Martin v. Löwis's avatar Martin v. Löwis

Issue #14937: Fix typo. Patch by Roger Serwy.

üst 27b130e7
......@@ -143,7 +143,7 @@ class AutoComplete:
elif hp.is_in_code() and (not mode or mode==COMPLETE_ATTRIBUTES):
self._remove_autocomplete_window()
mode = COMPLETE_ATTRIBUTES
while i and curline[i-1] in ID_CHARS or ord(curline[i-1]) > 127:
while i and (curline[i-1] in ID_CHARS or ord(curline[i-1]) > 127):
i -= 1
comp_start = curline[i:j]
if i and curline[i-1] == '.':
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment