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/testing/numpytest.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/testing/numpytest.py')
-rw-r--r-- | numpy/testing/numpytest.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/testing/numpytest.py b/numpy/testing/numpytest.py index 4b43c428e..5b7ef9953 100644 --- a/numpy/testing/numpytest.py +++ b/numpy/testing/numpytest.py @@ -197,7 +197,7 @@ class _SciPyTextTestResult(unittest._TextTestResult): class SciPyTextTestRunner(unittest.TextTestRunner): def _makeResult(self): return _SciPyTextTestResult(self.stream, self.descriptions, self.verbosity) - + class NumpyTest: """ Numpy tests site manager. @@ -295,7 +295,7 @@ class NumpyTest: for base in clsobj.__bases__: for n in self._get_method_names(base,level): if n not in names: - names.append(n) + names.append(n) return names def _get_short_module_name(self, module): @@ -304,7 +304,7 @@ class NumpyTest: if short_module_name=='__init__': short_module_name = module.__name__.split('.')[-1] short_module_name = self._rename_map.get(short_module_name,short_module_name) - return short_module_name + return short_module_name def _get_module_tests(self,module,level,verbosity): mstr = self._module_str |