diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2020-01-12 00:21:46 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-12 00:21:46 +0000 |
commit | 9748fd8c0d4451ed31a5d27459e90a8b30a837f1 (patch) | |
tree | 7a6027608a9a38a692c75bbc531612344428582f /numpy/f2py | |
parent | c8bdb9c7f91d12f20a3c6a27d776e2bc4a916d81 (diff) | |
download | numpy-9748fd8c0d4451ed31a5d27459e90a8b30a837f1.tar.gz |
Update numpy/f2py/crackfortran.py
Diffstat (limited to 'numpy/f2py')
-rwxr-xr-x | numpy/f2py/crackfortran.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/f2py/crackfortran.py b/numpy/f2py/crackfortran.py index 31e01242e..09bab11bd 100755 --- a/numpy/f2py/crackfortran.py +++ b/numpy/f2py/crackfortran.py @@ -3115,7 +3115,7 @@ def true_intent_list(var): try: f = globals()['isintent_%s' % intent] except KeyError: - c = False + pass else: if f(var): ret.append(intent) |