diff options
| author | default-303 <ajayds2001@gmail.com> | 2021-06-11 13:44:18 +0530 |
|---|---|---|
| committer | default-303 <ajayds2001@gmail.com> | 2021-06-11 13:44:18 +0530 |
| commit | 6ce7835aa8ac388724739956e06bef4bd8abdac2 (patch) | |
| tree | 2f376a9b1a3c55b803a0f3a475a7d96107aeb2e7 /numpy/f2py | |
| parent | c76b76385b1a9b8672cf0855980ecfea7a8a7c6e (diff) | |
| download | numpy-6ce7835aa8ac388724739956e06bef4bd8abdac2.tar.gz | |
MAINT: added space for readability in strings and basic refactoring
Diffstat (limited to 'numpy/f2py')
| -rwxr-xr-x | numpy/f2py/crackfortran.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/f2py/crackfortran.py b/numpy/f2py/crackfortran.py index 8b1dc5527..c7e472f45 100755 --- a/numpy/f2py/crackfortran.py +++ b/numpy/f2py/crackfortran.py @@ -2551,7 +2551,7 @@ def get_parameters(vars, global_params={}): v = ''.join(tt) elif iscomplex(vars[n]): - outmess(f'get_parameters[TODO]:' + outmess(f'get_parameters[TODO]: ' f'implement evaluation of complex expression {v}') try: @@ -2983,7 +2983,7 @@ def expr2name(a, block, args=[]): def analyzeargs(block): setmesstext(block) - implicitrules = buildimplicitrules(block)[0] + implicitrules, _ = buildimplicitrules(block) if 'args' not in block: block['args'] = [] args = [] |
