Message16411
| Author |
doko |
| Recipients |
| Date |
2003年06月14日.10:51:25 |
| SpamBayes Score |
| Marked as misclassified |
| Message-id |
| In-reply-to |
| Content |
[forwarded from http://bugs.debian.org/178205]
I'm not able to reproduce this bug in current 2.1/2.2.
In 2.3 CVS 20030614, changing the window size of an
xterm results in the crash
The following code crashes. It does not occur when
getkey () is not used.
# Crash python
import curses, signal, time, sys
def sigwinch (signum, frame): return
win = curses.initscr ()
signal.signal(signal.SIGWINCH, sigwinch)
while 1: win.getkey ()
curses.endwin ()
Traceback (most recent call last):
File "curs.py", line 9, in ?
while 1: win.getkey ()
_curses.error: no input
|
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2007年08月23日 14:13:56 | admin | link | issue754455 messages |
| 2007年08月23日 14:13:56 | admin | create |
|