summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Hammond <mhammond@skippinet.com.au>2011-10-17 00:35:06 (GMT)
committerMark Hammond <mhammond@skippinet.com.au>2011-10-17 00:35:06 (GMT)
commit3dca9f52a42df726f80cd19117cd6d232f730adf (patch)
tree15f63493dff43600a6abeaaa29d3d4c172f5e517
parent323b5daa102504fda954a2f61268355c99977893 (diff)
downloadcpython-3dca9f52a42df726f80cd19117cd6d232f730adf.zip
cpython-3dca9f52a42df726f80cd19117cd6d232f730adf.tar.gz
cpython-3dca9f52a42df726f80cd19117cd6d232f730adf.tar.bz2
normalize whitespace in Lib/distutils/msvc9compiler.py
-rw-r--r--Lib/distutils/msvc9compiler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/msvc9compiler.py b/Lib/distutils/msvc9compiler.py
index 9838d64..7ec9b92 100644
--- a/Lib/distutils/msvc9compiler.py
+++ b/Lib/distutils/msvc9compiler.py
@@ -685,7 +685,7 @@ class MSVCCompiler(CCompiler) :
def manifest_get_embed_info(self, target_desc, ld_args):
# If a manifest should be embedded, return a tuple of
# (manifest_filename, resource_id). Returns None if no manifest
- # should be embedded. See http://bugs.python.org/issue7833 for why
+ # should be embedded. See http://bugs.python.org/issue7833 for why
# we want to avoid any manifest for extension modules if we can)
for arg in ld_args:
if arg.startswith("/MANIFESTFILE:"):
@@ -728,7 +728,7 @@ class MSVCCompiler(CCompiler) :
manifest_buf = re.sub(pattern, "", manifest_buf)
pattern = "<dependentAssembly>\s*</dependentAssembly>"
manifest_buf = re.sub(pattern, "", manifest_buf)
- # Now see if any other assemblies are referenced - if not, we
+ # Now see if any other assemblies are referenced - if not, we
# don't want a manifest embedded.
pattern = re.compile(
r"""<assemblyIdentity.*?name=(?:"|')(.+?)(?:"|')"""