diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-02-20 21:42:18 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-02-20 21:42:18 (GMT) |
commit | 32cbc96150e4799d24ff04071f518e48b29f60a0 (patch) | |
tree | ceab895133fcdac0e2e4ac61fc4f4de15df2729b /Lib/distutils/msvccompiler.py | |
parent | 124a4e58c497f6bfdb2e26465b8b3940393a3b29 (diff) | |
download | cpython-32cbc96150e4799d24ff04071f518e48b29f60a0.zip cpython-32cbc96150e4799d24ff04071f518e48b29f60a0.tar.gz cpython-32cbc96150e4799d24ff04071f518e48b29f60a0.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/distutils/msvccompiler.py')
-rw-r--r-- | Lib/distutils/msvccompiler.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/distutils/msvccompiler.py b/Lib/distutils/msvccompiler.py index aefcf98..f88f365 100644 --- a/Lib/distutils/msvccompiler.py +++ b/Lib/distutils/msvccompiler.py @@ -184,7 +184,7 @@ def get_build_architecture(): return "Intel" j = string.find(sys.version, ")", i) return sys.version[i+len(prefix):j] - + class MSVCCompiler (CCompiler) : @@ -232,7 +232,7 @@ class MSVCCompiler (CCompiler) : else: # Win64. Assume this was built with the platform SDK self.__product = "Microsoft SDK compiler %s" % (self.__version + 6) - + self.initialized = False def initialize(self): @@ -281,7 +281,7 @@ class MSVCCompiler (CCompiler) : self.compile_options = [ '/nologo', '/Ox', '/MD', '/W3', '/GS-' , '/DNDEBUG'] self.compile_options_debug = ['/nologo', '/Od', '/MDd', '/W3', '/GS-', - '/Z7', '/D_DEBUG'] + '/Z7', '/D_DEBUG'] self.ldflags_shared = ['/DLL', '/nologo', '/INCREMENTAL:NO'] if self.__version >= 7: |