diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2015-03-08 19:43:10 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2015-03-08 19:43:10 (GMT) |
commit | 5bd7bf5bab3a961a3952e36b053eb93818553e13 (patch) | |
tree | c6df9941bf61e2de5917b788bf59436a8495b49b /Misc | |
parent | af098a221aba15dfd121250e590c8ff72c81665b (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |