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 eryksun, kbk, random832, roger.serwy, serhiy.storchaka, steven.daprano, terry.reedy, Árpád Kósa
Date 2015-11-23.19:20:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1448306456.93.0.706410303519.issue25709@psf.upfronthosting.co.za>
In-reply-to
Content
Yes, I have came to the same as random832. String objects have "fast path" for concatenating, and in this path cached UTF8 representation is not cleaned. Pickle is one of simplest ways to reproduce this issue. May be it can be reproduced with compile() or type(), but these ways looks too heavyweighted to me.

Here is a patch that fixes strings concatenation.
History
Date User Action Args
2015-11-23 19:20:56serhiy.storchakasetrecipients: + serhiy.storchaka, terry.reedy, kbk, roger.serwy, steven.daprano, eryksun, random832, Árpád Kósa
2015-11-23 19:20:56serhiy.storchakasetmessageid: <1448306456.93.0.706410303519.issue25709@psf.upfronthosting.co.za>
2015-11-23 19:20:56serhiy.storchakalinkissue25709 messages
2015-11-23 19:20:56serhiy.storchakacreate