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 arigo
Recipients Ted Meyer, arigo, llllllllll
Date 2017-01-05.07:03:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1483599816.61.0.675169723151.issue29096@psf.upfronthosting.co.za>
In-reply-to
Content
The signal handler is called between the INPLACE_ADD and the following STORE_FAST opcode, never from string_concatenate() itself.  A fix would be to make sure signal handlers are not called between these two opcodes.  See the minimal, proof-of-concept patch #1.  A possibly better fix, which at least should match the SETUP_FINALLY handling in the ticker handler, is attached as patch #2.  (Patches against 2.7.13)
History
Date User Action Args
2017-01-05 07:03:36arigosetrecipients: + arigo, llllllllll, Ted Meyer
2017-01-05 07:03:36arigosetmessageid: <1483599816.61.0.675169723151.issue29096@psf.upfronthosting.co.za>
2017-01-05 07:03:36arigolinkissue29096 messages
2017-01-05 07:03:36arigocreate