We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8061b0 commit 91e193fCopy full SHA for 91e193f
pyrepl/readline.py
@@ -365,7 +365,7 @@ def get_line_buffer(self):
365
def _get_idxs(self):
366
start = cursor = self.get_reader().pos
367
buf = self.get_line_buffer()
368
- for i in xrange(cursor - 1, -1, -1):
+ for i in range(cursor - 1, -1, -1):
369
if buf[i] in self.get_completer_delims():
370
break
371
start = i
0 commit comments