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 serhiy.storchaka
Recipients mark.dickinson, serhiy.storchaka
Date 2016-09-10.20:54:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1473540848.58.0.668691678294.issue28069@psf.upfronthosting.co.za>
In-reply-to
Content
This was not a problem before 3.5 since IgnoreHandler and DefaultHandler were singletons exposed in the signal module as SIG_DFL and SIG_IGN. But in issue21076 they were converted to enums. This involves converting between enums and ints. All works only while SIG_DFL and SIG_IGN are small integers and there is small integer cache. I proposed either revert this change (signal_no_enum_handlers.patch in issue21076) or even make SIG_DFL and SIG_IGN non-integer singletons (issue23325).
History
Date User Action Args
2016-09-10 20:54:08serhiy.storchakasetrecipients: + serhiy.storchaka, mark.dickinson
2016-09-10 20:54:08serhiy.storchakasetmessageid: <1473540848.58.0.668691678294.issue28069@psf.upfronthosting.co.za>
2016-09-10 20:54:08serhiy.storchakalinkissue28069 messages
2016-09-10 20:54:08serhiy.storchakacreate