summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-12-21 23:12:41 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-12-21 23:12:41 (GMT)
commitc60ea329a4f40791139c24fbb25c8514cc40eeb2 (patch)
treed0ce7cd7f83c120357ca69fc07f5b5748ea1afe7 /Misc
parent036dd31f882a271c87db3e28cee4e4ff4149a122 (diff)
downloadcpython-c60ea329a4f40791139c24fbb25c8514cc40eeb2.zip
cpython-c60ea329a4f40791139c24fbb25c8514cc40eeb2.tar.gz
cpython-c60ea329a4f40791139c24fbb25c8514cc40eeb2.tar.bz2
Fixed #7556: editing the MSVC manifest file with a regexp was throwing an error
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8c4ea74..1e76e10 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -157,6 +157,10 @@ C-API
Library
-------
+- Issue #7556: Make sure Distutils' msvc9compile reads and writes the
+ MSVC XML Manifest file in text mode so string patterns can be used
+ in regular expressions.
+
- Issue #7552: Removed line feed in the base64 Authorization header in
the Distutils upload command to avoid an error when PyPI reads it.
This occurs on long passwords. Initial patch by JP St. Pierre.