Message305264
| Author |
vstinner |
| Recipients |
koobs, pablogsal, pitrou, serhiy.storchaka, skrah, vstinner |
| Date |
2017年10月31日.00:42:10 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1509410530.23.0.213398074469.issue31629@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Pablo Galindo Salgado:
> Also, it seems that calling initscr registers signal handlers for SIGTERM: (...)
The problem is that endwin() doesn't restore the old handler.
Attached PR 4183 fixes the bug, it saves/restores signal handlers:
./python -m test -vuall test_curses test_multiprocessing_fork -m test.test_curses.TestCurses.test_new_curses_panel -m test.test_multiprocessing_fork.WithProcessesTestProcess.test_many_processes |
|