[Python-checkins] cpython: - whitespace-normalize libffi file

matthias.klose python-checkins at python.org
Tue Jun 26 18:01:08 CEST 2012


http://hg.python.org/cpython/rev/be2bc6d8e622
changeset:   77808:be2bc6d8e622
user:        Matthias Klose <doko at ubuntu.com>
date:        Tue Jun 26 17:59:32 2012 +0200
summary:
  - whitespace-normalize libffi file

files:
  Modules/_ctypes/libffi/generate-osx-source-and-headers.py |  8 ++++----
  1 files changed, 4 insertions(+), 4 deletions(-)


diff --git a/Modules/_ctypes/libffi/generate-osx-source-and-headers.py b/Modules/_ctypes/libffi/generate-osx-source-and-headers.py
--- a/Modules/_ctypes/libffi/generate-osx-source-and-headers.py
+++ b/Modules/_ctypes/libffi/generate-osx-source-and-headers.py
@@ -40,7 +40,7 @@
     name = 'mac32'
     triple = 'i386-apple-darwin10'
     sdkroot = desktop_sdk_info['Path']
-    
+
     prefix = "#if defined(__i386__) && !defined(__x86_64__)\n\n"
     suffix = "\n\n#endif"
 
@@ -50,14 +50,14 @@
     name = 'mac'
     triple = 'x86_64-apple-darwin10'
     sdkroot = desktop_sdk_info['Path']
-    
+
     prefix = "#if !defined(__i386__) && defined(__x86_64__)\n\n"
     suffix = "\n\n#endif"
 
 def move_file(src_dir, dst_dir, filename, file_suffix=None, prefix='', suffix=''):
     if not os.path.exists(dst_dir):
         os.makedirs(dst_dir)
-    
+
     out_filename = filename
 
     if file_suffix:
@@ -114,7 +114,7 @@
         return subprocess.check_output(['xcrun', '-sdk', platform.sdkroot, '-find', cmd]).strip()
 
     build_dir = 'build_' + platform.name
-    if not os.path.exists(build_dir):    
+    if not os.path.exists(build_dir):
         os.makedirs(build_dir)
         env = dict(CC=xcrun_cmd('clang'),
                    LD=xcrun_cmd('ld'),

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


More information about the Python-checkins mailing list