summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2013-03-19 21:59:02 (GMT)
committerGregory P. Smith <greg@krypto.org>2013-03-19 21:59:02 (GMT)
commit0408bf9cfb0dac07bf378f10af771fab41ba0d52 (patch)
tree30057507d2e2490c451ceb12448d2f746c9539b0 /Misc/NEWS
parent6227c6952e5b9ab4c41f027b5e971b6812e24efa (diff)
parent029273fc903bcbdd689132f153d53004a8aee0b2 (diff)
downloadcpython-0408bf9cfb0dac07bf378f10af771fab41ba0d52.zip
cpython-0408bf9cfb0dac07bf378f10af771fab41ba0d52.tar.gz
cpython-0408bf9cfb0dac07bf378f10af771fab41ba0d52.tar.bz2
Fixes Issue #17192: Update the ctypes module's libffi to v3.0.13. This
specifically addresses a stack misalignment issue on x86 and issues on some more recent platforms.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS6
1 files changed, 5 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 725c723..243c4da 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -193,7 +193,11 @@ Core and Builtins
Library
-------
-Issue #16880: Do not assume _imp.load_dynamic() is defined in the imp module.
+- Issue #17192: Update the ctypes module's libffi to v3.0.13. This
+ specifically addresses a stack misalignment issue on x86 and issues on
+ some more recent platforms.
+
+- Issue #16880: Do not assume _imp.load_dynamic() is defined in the imp module.
- Issue #16389: Fixed a performance regression relative to Python 3.1 in the
caching of compiled regular expressions.