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 vstinner
Recipients Dolda2000, benjamin.peterson, georg.brandl, r.david.murray, vstinner
Date 2014-10-20.12:52:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1413809579.06.0.439051287199.issue22674@psf.upfronthosting.co.za>
In-reply-to
Content
I don't think that a strsignal() is required, signals now have a name attribute!

Python 3.5.0a0 (default:07ae7bc06af0, Oct 16 2014, 09:46:01) 
>>> import signal
>>> signal.SIGINT
<Signals.SIGINT: 2>
>>> signal.SIGINT.name
'SIGINT'
History
Date User Action Args
2014-10-20 12:52:59vstinnersetrecipients: + vstinner, georg.brandl, benjamin.peterson, r.david.murray, Dolda2000
2014-10-20 12:52:59vstinnersetmessageid: <1413809579.06.0.439051287199.issue22674@psf.upfronthosting.co.za>
2014-10-20 12:52:59vstinnerlinkissue22674 messages
2014-10-20 12:52:58vstinnercreate