summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-05-24 21:37:07 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-05-24 21:37:07 (GMT)
commit1273b7cd9ccd19a168d3def5c7d1479c5fb6119a (patch)
tree3d4a58fd5919023cc7db0ff2ceff8e7a4103d53e /Misc
parentd48ba0bde5bd535e9aa4c90cb122c0197f862e68 (diff)
downloadcpython-1273b7cd9ccd19a168d3def5c7d1479c5fb6119a.zip
cpython-1273b7cd9ccd19a168d3def5c7d1479c5fb6119a.tar.gz
cpython-1273b7cd9ccd19a168d3def5c7d1479c5fb6119a.tar.bz2
Issue #12070: Fix the Makefile parser of the sysconfig module to handle
correctly references to "bogus variable" (e.g. "prefix=$/opt/python").
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 bca1312..8d19f7a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,9 @@ Core and Builtins
Library
-------
+- Issue #12070: Fix the Makefile parser of the sysconfig module to handle
+ correctly references to "bogus variable" (e.g. "prefix=$/opt/python").
+
- Issue #12100: Don't reset incremental encoders of CJK codecs at each call to
their encode() method anymore, but continue to call the reset() method if the
final argument is True.