summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authordoko@ubuntu.com <doko@ubuntu.com>2016-01-11 20:41:40 (GMT)
committerdoko@ubuntu.com <doko@ubuntu.com>2016-01-11 20:41:40 (GMT)
commitb2b12172706df5e4686a5fccdcf88ebe22ee5b5f (patch)
treeee96d49307dd43d1f446d4b4ba38b99519c10df5 /Misc
parent885e1939beb3ab95cc4e06d86815261256cd1d03 (diff)
downloadcpython-b2b12172706df5e4686a5fccdcf88ebe22ee5b5f.zip
cpython-b2b12172706df5e4686a5fccdcf88ebe22ee5b5f.tar.gz
cpython-b2b12172706df5e4686a5fccdcf88ebe22ee5b5f.tar.bz2
- Issue #24705: Fix sysconfig._parse_makefile not expanding ${} vars
appearing before $() vars.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7bdce71..20d8bb2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -44,6 +44,9 @@ Core and Builtins
Library
-------
+- Issue #24705: Fix sysconfig._parse_makefile not expanding ${} vars
+ appearing before $() vars.
+
- Issue #22138: Fix mock.patch behavior when patching descriptors. Restore
original values after patching. Patch contributed by Sean McCully.