Message88023
| Author | shish |
|---|---|
| Recipients | ajaksu2, shish |
| Date | 2009-05-18.09:41:23 |
| SpamBayes Score | 7.106575e-05 |
| Marked as misclassified | No |
| Message-id | <1242639685.44.0.185209083565.issue3949@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
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 |
|
| History | |||
|---|---|---|---|
| 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 | |