diff options
author | Raymond Hettinger <python@rcn.com> | 2004-10-26 01:52:37 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-10-26 01:52:37 (GMT) |
commit | 561fbf138d30896af3e7afe33f9bc602dda5f2b7 (patch) | |
tree | 58e1d9ea5979c53cb547c7a5fd3b925ef75fb18c /Misc | |
parent | 3ed238503d7f9764f670794be20c4a4a0011487a (diff) | |
download | cpython-561fbf138d30896af3e7afe33f9bc602dda5f2b7.zip cpython-561fbf138d30896af3e7afe33f9bc602dda5f2b7.tar.gz cpython-561fbf138d30896af3e7afe33f9bc602dda5f2b7.tar.bz2 |
SF bug #1054139: serious string hashing error in 2.4b1
_PyString_Resize() readied strings for mutation but did not invalidate
the cached hash value.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ License Version 2. Core and builtins ----------------- -... +- Bug #1054139 _PyString_Resize() now invalidates its cached hash value. Extension Modules ----------------- |