diff options
author | cookedm <cookedm@localhost> | 2006-03-10 21:31:27 +0000 |
---|---|---|
committer | cookedm <cookedm@localhost> | 2006-03-10 21:31:27 +0000 |
commit | bf57380caa818b73a4c41409de6ff260425f9bb6 (patch) | |
tree | b2c42e0fde172de5def0c91811845808c00e296e /numpy/distutils/cpuinfo.py | |
parent | f2db317c1fad63f1c85944ba8443b465e32774dc (diff) | |
download | numpy-bf57380caa818b73a4c41409de6ff260425f9bb6.tar.gz |
Run reindent.py (script distributed with Python) over the source to remove extraneous whitespace
Diffstat (limited to 'numpy/distutils/cpuinfo.py')
-rw-r--r-- | numpy/distutils/cpuinfo.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/numpy/distutils/cpuinfo.py b/numpy/distutils/cpuinfo.py index 92dd5486c..fdc87b6db 100644 --- a/numpy/distutils/cpuinfo.py +++ b/numpy/distutils/cpuinfo.py @@ -3,8 +3,8 @@ cpuinfo Copyright 2002 Pearu Peterson all rights reserved, -Pearu Peterson <pearu@cens.ioc.ee> -Permission to use, modify, and distribute this software is given under the +Pearu Peterson <pearu@cens.ioc.ee> +Permission to use, modify, and distribute this software is given under the terms of the SciPy (BSD style) license. See LICENSE.txt that came with this distribution for specifics. @@ -42,7 +42,7 @@ class cpuinfo_base: return lambda func=self._try_call,attr=attr : func(attr) else: return lambda : None - raise AttributeError,name + raise AttributeError,name def _getNCPUs(self): return 1 @@ -53,7 +53,7 @@ class cpuinfo_base: class linux_cpuinfo(cpuinfo_base): info = None - + def __init__(self): if self.info is not None: return @@ -242,7 +242,7 @@ class linux_cpuinfo(cpuinfo_base): class irix_cpuinfo(cpuinfo_base): info = None - + def __init__(self): if self.info is not None: return @@ -315,7 +315,7 @@ class irix_cpuinfo(cpuinfo_base): class darwin_cpuinfo(cpuinfo_base): info = None - + def __init__(self): if self.info is not None: return @@ -381,7 +381,7 @@ class darwin_cpuinfo(cpuinfo_base): class sunos_cpuinfo(cpuinfo_base): info = None - + def __init__(self): if self.info is not None: return |