classification
Title: curses.textpad loses characters at the end of lines
Type: behavior
Components: Library (Lib) Versions: Python 2.5, Python 2.4
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: shish
Priority: Keywords:

Created on 2008-05-01 16:39 by shish, last changed 2008-05-05 21:43 by shish.

Messages
msg66035 (view) Author: Shish (shish) Date: 2008-05-01 16:39
Even in the self-test suite, the bug appears, run:

python /usr/lib/python2.4/curses/textpad.py

then type so that the line wraps, eg 123456789123456789 to fill two 
lines, and then ctrl-g to return -- the result has had the end 
characters of each line removed, so the return value is 
12345678\n12345678\n

As a quick hack on my local install I changed line 56 from:

last = min(self.maxx, last+1)

to

last = min(self.maxx, last)+1

and it seems to work, but I have no idea if this is the right way to 
fix it (ie, this might have side effects, or this off-by-one might 
happen in several places and need a global fix, not just one local one)
msg66292 (view) Author: Shish (shish) Date: 2008-05-05 21:43
Also present in 2.5
History
Date User Action Args
2008-05-05 21:43:05shishsetmessages: + msg66292
components: + Library (Lib), - Extension Modules
versions: + Python 2.5
2008-05-01 17:17:51shishsettype: behavior
2008-05-01 16:39:40shishcreate