summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-05-24 21:38:03 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-05-24 21:38:03 (GMT)
commit17dc81951acac1e6e6488357085003b3d9a9f48f (patch)
tree063ec6488cc0f2c8e18a214bbfdaafd7a4f7a1e4 /Misc
parenteb734f77adb23a3cfe90a21679b74aee404d1a31 (diff)
parent1273b7cd9ccd19a168d3def5c7d1479c5fb6119a (diff)
downloadcpython-17dc81951acac1e6e6488357085003b3d9a9f48f.zip
cpython-17dc81951acac1e6e6488357085003b3d9a9f48f.tar.gz
cpython-17dc81951acac1e6e6488357085003b3d9a9f48f.tar.bz2
(Merge 3.2) 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 7b143f3..917dfe3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -161,6 +161,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.