Message88023
in its simplest form, this shows the bug -- signal.getsignal does not
return the original signal handler (the "tell the app to resize itself"
one that curses installs), and so, the original signal handler cannot
be re-activated after being temporarily disabled
~~~~~~~~~~~~~~
import curses
import signal
curses.initscr()
old_winch = signal.getsignal(signal.SIGWINCH)
curses.endwin()
print old_winch |
|
Date |
User |
Action |
Args |
2009-05-18 09:41:25 | shish | set | recipients:
+ shish, ajaksu2 |
2009-05-18 09:41:25 | shish | set | messageid: <1242639685.44.0.185209083565.issue3949@psf.upfronthosting.co.za> |
2009-05-18 09:41:24 | shish | link | issue3949 messages |
2009-05-18 09:41:23 | shish | create | |
|