[Python-checkins] cpython (2.7): normalize whitespace in Lib/distutils/msvc9compiler.py

mark.hammond python-checkins at python.org
Mon Oct 17 02:38:25 CEST 2011


http://hg.python.org/cpython/rev/a27df4b88d67
changeset:   72954:a27df4b88d67
branch:      2.7
parent:      72951:fb886858024c
user:        Mark Hammond <mhammond at skippinet.com.au>
date:        Mon Oct 17 11:35:06 2011 +1100
summary:
  normalize whitespace in Lib/distutils/msvc9compiler.py

files:
  Lib/distutils/msvc9compiler.py |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Lib/distutils/msvc9compiler.py b/Lib/distutils/msvc9compiler.py
--- a/Lib/distutils/msvc9compiler.py
+++ b/Lib/distutils/msvc9compiler.py
@@ -685,7 +685,7 @@
     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 @@
             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=(?:"|')(.+?)(?:"|')"""

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list