diff options
Diffstat (limited to 'numpy/f2py/cfuncs.py')
-rw-r--r-- | numpy/f2py/cfuncs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/f2py/cfuncs.py b/numpy/f2py/cfuncs.py index 755f4203b..4e61b0634 100644 --- a/numpy/f2py/cfuncs.py +++ b/numpy/f2py/cfuncs.py @@ -1212,7 +1212,7 @@ def get_needs(): else: out.append(outneeds[n][0]) del outneeds[n][0] - if saveout and (0 not in map(lambda x,y:x==y,saveout,outneeds[n])) \ + if saveout and (0 not in map(lambda x,y:x==y, saveout, outneeds[n])) \ and outneeds[n] != []: print(n,saveout) errmess('get_needs: no progress in sorting needs, probably circular dependence, skipping.\n') |