This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

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:25shishsetrecipients: + shish, ajaksu2
2009-05-18 09:41:25shishsetmessageid: <1242639685.44.0.185209083565.issue3949@psf.upfronthosting.co.za>
2009-05-18 09:41:24shishlinkissue3949 messages
2009-05-18 09:41:23shishcreate