summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-09-08 12:48:12 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-09-08 12:48:12 (GMT)
commit3c6261a90b4fb9e77c2967d84a03f526174775a7 (patch)
tree3618fc354622410131462de907d4e5e20ec3a517 /Misc/NEWS
parentb58c3c7e2fbdc3ecb75562e722f6d1e87c6be063 (diff)
downloadcpython-3c6261a90b4fb9e77c2967d84a03f526174775a7.zip
cpython-3c6261a90b4fb9e77c2967d84a03f526174775a7.tar.gz
cpython-3c6261a90b4fb9e77c2967d84a03f526174775a7.tar.bz2
Merged revisions 84623 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84623 | antoine.pitrou | 2010-09-08 14:37:10 +0200 (mer., 08 sept. 2010) | 4 lines Issue #9797: pystate.c wrongly assumed that zero couldn't be a valid thread-local storage key. ........
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3a588ad..cc18cf3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.1.3?
Core and Builtins
-----------------
+- Issue #9797: pystate.c wrongly assumed that zero couldn't be a valid
+ thread-local storage key.
+
- Issue #9737: Fix a crash when trying to delete a slice or an item from
a memoryview object.