From 28f46e1839bbd6b39c7962b7848e887e97fb5df5 Mon Sep 17 00:00:00 2001 From: Jeremy Hylton Date: Thu, 13 Jun 2002 14:58:30 +0000 Subject: Python style conformance: Delete spaces between name of function and arglist. Making the world better a little bit at a time . --- Lib/distutils/unixccompiler.py | 82 +++++++++++++++++++++--------------------- 1 file changed, 41 insertions(+), 41 deletions(-) diff --git a/Lib/distutils/unixccompiler.py b/Lib/distutils/unixccompiler.py index 56d3ee4..e584007 100644 --- a/Lib/distutils/unixccompiler.py +++ b/Lib/distutils/unixccompiler.py @@ -81,20 +81,20 @@ class UnixCCompiler (CCompiler): - def __init__ (self, - verbose=0, - dry_run=0, - force=0): + def __init__(self, + verbose=0, + dry_run=0, + force=0): CCompiler.__init__ (self, verbose, dry_run, force) - def preprocess (self, - source, - output_file=None, - macros=None, - include_dirs=None, - extra_preargs=None, - extra_postargs=None): + def preprocess(self, + source, + output_file=None, + macros=None, + include_dirs=None, + extra_preargs=None, + extra_postargs=None): (_, macros, include_dirs) = \ self._fix_compile_args(None, macros, include_dirs) @@ -120,14 +120,14 @@ class UnixCCompiler (CCompiler): raise CompileError, msg - def compile (self, - sources, - output_dir=None, - macros=None, - include_dirs=None, - debug=0, - extra_preargs=None, - extra_postargs=None): + def compile(self, + sources, + output_dir=None, + macros=None, + include_dirs=None, + debug=0, + extra_preargs=None, + extra_postargs=None): (output_dir, macros, include_dirs) = \ self._fix_compile_args(output_dir, macros, include_dirs) @@ -164,11 +164,11 @@ class UnixCCompiler (CCompiler): # compile () - def create_static_lib (self, - objects, - output_libname, - output_dir=None, - debug=0): + def create_static_lib(self, + objects, + output_libname, + output_dir=None, + debug=0): (objects, output_dir) = self._fix_object_args(objects, output_dir) @@ -197,19 +197,19 @@ class UnixCCompiler (CCompiler): # create_static_lib () - def link (self, - target_desc, - objects, - output_filename, - output_dir=None, - libraries=None, - library_dirs=None, - runtime_library_dirs=None, - export_symbols=None, - debug=0, - extra_preargs=None, - extra_postargs=None, - build_temp=None): + def link(self, + target_desc, + objects, + output_filename, + output_dir=None, + libraries=None, + library_dirs=None, + runtime_library_dirs=None, + export_symbols=None, + debug=0, + extra_preargs=None, + extra_postargs=None, + build_temp=None): (objects, output_dir) = self._fix_object_args(objects, output_dir) (libraries, library_dirs, runtime_library_dirs) = \ @@ -250,10 +250,10 @@ class UnixCCompiler (CCompiler): # These are all used by the 'gen_lib_options() function, in # ccompiler.py. - def library_dir_option (self, dir): + def library_dir_option(self, dir): return "-L" + dir - def runtime_library_dir_option (self, dir): + def runtime_library_dir_option(self, dir): # XXX Hackish, at the very least. See Python bug #445902: # http://sourceforge.net/tracker/index.php # ?func=detail&aid=445902&group_id=5470&atid=105470 @@ -272,11 +272,11 @@ class UnixCCompiler (CCompiler): else: return "-R" + dir - def library_option (self, lib): + def library_option(self, lib): return "-l" + lib - def find_library_file (self, dirs, lib, debug=0): + def find_library_file(self, dirs, lib, debug=0): for dir in dirs: shared = os.path.join( -- cgit v0.12