diff options
author | cookedm <cookedm@localhost> | 2007-05-21 13:01:20 +0000 |
---|---|---|
committer | cookedm <cookedm@localhost> | 2007-05-21 13:01:20 +0000 |
commit | aac06894d155d15aa855f904735ddeeb95335cc4 (patch) | |
tree | 82f59776f985a7d09d8c9492a116a53bc187dbda /numpy/distutils/command/config_compiler.py | |
parent | 02df1be4949d7583a662bca6c0fe61d7afc334a7 (diff) | |
download | numpy-aac06894d155d15aa855f904735ddeeb95335cc4.tar.gz |
minor cleanups in numpy.distutils (style mostly)
Diffstat (limited to 'numpy/distutils/command/config_compiler.py')
-rw-r--r-- | numpy/distutils/command/config_compiler.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/numpy/distutils/command/config_compiler.py b/numpy/distutils/command/config_compiler.py index 89fc81c55..af99dbd32 100644 --- a/numpy/distutils/command/config_compiler.py +++ b/numpy/distutils/command/config_compiler.py @@ -12,7 +12,6 @@ def show_fortran_compilers(_cache=[]): import distutils.core dist = distutils.core._setup_distribution show_fcompilers(dist) - return class config_fc(Command): """ Distutils command to hold user specified options @@ -54,7 +53,6 @@ class config_fc(Command): self.debug = None self.noopt = None self.noarch = None - return def finalize_options(self): log.info('unifing config_fc, config, build_clib, build_ext, build commands --fcompiler options') @@ -78,7 +76,6 @@ class config_fc(Command): if v1: for c in cmd_list: if getattr(c,a) is None: setattr(c, a, v1) - return def run(self): # Do nothing. @@ -97,7 +94,6 @@ class config_cc(Command): def initialize_options(self): self.compiler = None - return def finalize_options(self): log.info('unifing config_cc, config, build_clib, build_ext, build commands --compiler options') |