mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Fix bug in backup inside esc sequence.
This commit is contained in:
parent
b71f879baf
commit
0b26a19a4f
1 changed files with 3 additions and 1 deletions
|
@ -82,6 +82,8 @@ class VT100:
|
|||
self.fill_top()
|
||||
|
||||
def send(self, buffer):
|
||||
self.msg('send: unfinished=%s, buffer=%s',
|
||||
`self.unfinished`, `buffer`)
|
||||
self.unfinished = self.unfinished + buffer
|
||||
i = 0
|
||||
n = len(self.unfinished)
|
||||
|
@ -110,7 +112,7 @@ class VT100:
|
|||
break
|
||||
argstr = argstr + c
|
||||
else:
|
||||
i = i - len(argstr)
|
||||
i = i - len(argstr) - 2
|
||||
break
|
||||
## self.msg('found ESC [ %s %s' % (`argstr`, `c`))
|
||||
args = string.splitfields(argstr, ';')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue