summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2006-04-16 18:55:50 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2006-04-16 18:55:50 (GMT)
commit19ab6c98cf0525682b74f1f217503c42bacb4916 (patch)
tree085bf98c3a76a80475ef8864ac329c820286ad04 /Misc/NEWS
parentd18d5a31535f4162045ce7b7ac8ea320333d24d4 (diff)
downloadcpython-19ab6c98cf0525682b74f1f217503c42bacb4916.zip
cpython-19ab6c98cf0525682b74f1f217503c42bacb4916.tar.gz
cpython-19ab6c98cf0525682b74f1f217503c42bacb4916.tar.bz2
Initialize structseq types only once.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 02dcd0a..0f70378 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ What's New in Python 2.5 alpha 2?
Core and builtins
-----------------
+- All uses of PyStructSequence_InitType have been changed to initialize
+ the type objects only once, even if the interpreter is initialized
+ multiple times.
+
- Bug #1454485, array.array('u') could crash the interpreter. This was
due to PyArgs_ParseTuple(args, 'u#', ...) trying to convert buffers (strings)
to unicode when it didn't make sense. 'u#' now requires a unicode string.