diff options
| author | Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> | 2021-10-06 22:23:25 +0200 |
|---|---|---|
| committer | Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> | 2021-10-06 23:02:28 +0200 |
| commit | dfc3761d6dedadb677aca907a0d098406a3241e7 (patch) | |
| tree | 830d9bd3a6729805ab7ae450d0bcb38121d24e9e | |
| parent | 9d32403470293c102de87b4fa26ce31a6879f361 (diff) | |
| download | numpy-dfc3761d6dedadb677aca907a0d098406a3241e7.tar.gz | |
MAINT: Fix LGTM.com warning: Implicit string concatenation in a list
Implicit string concatenation. Maybe missing a comma?
| -rwxr-xr-x | numpy/f2py/rules.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/f2py/rules.py b/numpy/f2py/rules.py index 24777df5b..78810a0a7 100755 --- a/numpy/f2py/rules.py +++ b/numpy/f2py/rules.py @@ -566,7 +566,7 @@ rout_rules = [ 'callfortran':'#name#_return_value,#name#_return_value_len,', 'callfortranroutine':[' #name#_return_value_len = #rlength#;', ' if ((#name#_return_value = (string)malloc(' - '#name#_return_value_len+1) == NULL) {', + + '#name#_return_value_len+1) == NULL) {', ' PyErr_SetString(PyExc_MemoryError, \"out of memory\");', ' f2py_success = 0;', ' } else {', |
