summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-01-17 10:04:45 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-01-17 10:04:45 (GMT)
commit8055afd0197862a3358fb219f5bb60233288fe02 (patch)
tree28f57e526a9cdc334a7684df302ca55da5bbf1ad /Misc
parent0bbcc4cf9853fe4864a481e303a9f8d22cf2dc36 (diff)
downloadcpython-8055afd0197862a3358fb219f5bb60233288fe02.zip
cpython-8055afd0197862a3358fb219f5bb60233288fe02.tar.gz
cpython-8055afd0197862a3358fb219f5bb60233288fe02.tar.bz2
Issue #4910, patch 3/3: rename nb_long to nb_reserved
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 28cd6b6..69c42d2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.1 alpha 0
Core and Builtins
-----------------
+- Issue #4910: Rename nb_long slot to nb_reserved, and change its
+ type to (void *).
+
- Issue #4935: The overflow checking code in the expandtabs() method common
to str, bytes and bytearray could be optimized away by the compiler, letting
the interpreter segfault instead of raising an error.