diff options
-rw-r--r-- | scipy/base/code_generators/genapi.py | 4 | ||||
-rw-r--r-- | scipy/base/records.py | 4 | ||||
-rw-r--r-- | scipy/f2py/docs/FAQ.txt | 3 |
3 files changed, 7 insertions, 4 deletions
diff --git a/scipy/base/code_generators/genapi.py b/scipy/base/code_generators/genapi.py index f185cd9bc..b70aa7a14 100644 --- a/scipy/base/code_generators/genapi.py +++ b/scipy/base/code_generators/genapi.py @@ -30,11 +30,11 @@ class Function(object): def argtypes_string(self): if not self.args: return 'void' - argstr = ', '.join(a[0] for a in self.args) + argstr = ', '.join([a[0] for a in self.args]) return argstr def __str__(self): - argstr = ', '.join(self._format_arg(a) for a in self.args) + argstr = ', '.join([self._format_arg(a) for a in self.args]) if self.doc: doccomment = '/* %s */\n' % self.doc else: diff --git a/scipy/base/records.py b/scipy/base/records.py index f4e29f238..4f02238bc 100644 --- a/scipy/base/records.py +++ b/scipy/base/records.py @@ -258,5 +258,5 @@ class ndrecarray(sb.ndarray): return self._fields[field_name] def setfield(self, field_name, val): - - + pass + diff --git a/scipy/f2py/docs/FAQ.txt b/scipy/f2py/docs/FAQ.txt index 580770185..e2ed79445 100644 --- a/scipy/f2py/docs/FAQ.txt +++ b/scipy/f2py/docs/FAQ.txt @@ -565,6 +565,9 @@ Q: What people think about F2PY? Here are some comments people have posted to f2py mailing list and c.l.py: ++ Ryan Krauss: I really appreciate f2py. It seems weird to say, but I + am excited about relearning FORTRAN to compliment my python stuff. + + Fabien Wahl: f2py is great, and is used extensively over here... + Fernando Perez: Anyway, many many thanks for this amazing tool. |