summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2015-03-08 19:43:10 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2015-03-08 19:43:10 (GMT)
commit5bd7bf5bab3a961a3952e36b053eb93818553e13 (patch)
treec6df9941bf61e2de5917b788bf59436a8495b49b /Misc
parentaf098a221aba15dfd121250e590c8ff72c81665b (diff)
downloadcpython-5bd7bf5bab3a961a3952e36b053eb93818553e13.zip
cpython-5bd7bf5bab3a961a3952e36b053eb93818553e13.tar.gz
cpython-5bd7bf5bab3a961a3952e36b053eb93818553e13.tar.bz2
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.
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 343cf8f..aa8237d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ Release date: 2015-03-08
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.