aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-02-01 03:58:07 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-02-01 03:58:07 +0100
commit8f74a73ecb48773e545efd62fb1d058c98ae6e66 (patch)
treeff08d8a02c90b6bbee2a68e44df44a2ea6fbe5b1
parentdd382ef8ec8a572f202999ca94ff292722f3d6f6 (diff)
downloadcpython-8f74a73ecb48773e545efd62fb1d058c98ae6e66.tar.gz
cpython-8f74a73ecb48773e545efd62fb1d058c98ae6e66.zip
Issue #20354: Mention the fix in Misc/NEWS
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 78b6bea1663..89cec2e4989 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -16,6 +16,9 @@ Core and Builtins
Library
-------
+- Issue #20354: Fix an alignment issue in the tracemalloc module on 64-bit
+ platforms. Bug seen on 64-bit Linux when using "make profile-opt".
+
- Issue #17159: inspect.signature now accepts duck types of functions,
which adds support for Cython functions. Initial patch by Stefan Behnel.