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 rthalley
Recipients
Date 2004-10-25.23:22:28
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
This is a fix for #1054139. 
 
The problem was that the fast path in the new 
higher-performance string concatenation code in ceval.c 
didn't invalide the cached hash value. 
 
My patch makes it set ob_shash to -1, and ob_sstate = 
SSTATE_NOT_INTERNED, just like what would happen if the 
slow path through PyString_Concat(&v, w) was used. 
 
/Bob 
 
History
Date User Action Args
2007-08-23 15:40:22adminlinkissue1054197 messages
2007-08-23 15:40:22admincreate