summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorLarry Hastings <larry@hastings.org>2015-03-09 09:40:13 (GMT)
committerLarry Hastings <larry@hastings.org>2015-03-09 09:40:13 (GMT)
commit551719be4a213494a6052bd3988746e097cd7947 (patch)
treee1bc58d6f07e897337ab99d82caf582510a91a02 /Misc
parentcfac654165c881795aa09cf4c4676300c79369a6 (diff)
parent52eb536c99968027187e5b5a65057da0277070e4 (diff)
downloadcpython-551719be4a213494a6052bd3988746e097cd7947.zip
cpython-551719be4a213494a6052bd3988746e097cd7947.tar.gz
cpython-551719be4a213494a6052bd3988746e097cd7947.tar.bz2
Merge.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6b553b6..001fd12 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -22,6 +22,10 @@ Release date: 2015-03-09
Core and Builtins
-----------------
+- Issue #22980: Under Linux, C extensions now include bitness in the file
+ name, to make it easy to test 32-bit and 64-bit builds in the same
+ working tree.
+
- Issue #23571: PyObject_Call() and PyCFunction_Call() now raise a SystemError
if a function returns a result and raises an exception. The SystemError is
chained to the previous exception.