summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-08-25 23:13:17 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-08-25 23:13:17 (GMT)
commit0e10206f2cc7b3fac5ad30cd45583c8f1a8a6126 (patch)
tree51769797eedbf38cd6b09a5aaaa730ad751d57bb /Misc
parentdc078de4931b309e39498c3fd5e521cf084a5d45 (diff)
downloadcpython-0e10206f2cc7b3fac5ad30cd45583c8f1a8a6126.zip
cpython-0e10206f2cc7b3fac5ad30cd45583c8f1a8a6126.tar.gz
cpython-0e10206f2cc7b3fac5ad30cd45583c8f1a8a6126.tar.bz2
basicsize and itemsize are Py_ssize_t #9688
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6d3d497..ecb1a4f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 3.2 Alpha 2?
Core and Builtins
-----------------
+- Issue #9688: __basicsize__ and __itemsize__ must be accessed as Py_ssize_t.
+
- Issue #9684: Added a definition for SIZEOF_WCHAR_T to PC/pyconfig.h,
to match the pyconfig.h generated by configure on other systems.