MCPcopy Index your code
hub / github.com/numpy/numpy / iscomplexfunction_warn

Function iscomplexfunction_warn

numpy/f2py/auxfuncs.py:366–377  ·  view source on GitHub ↗
(rout)

Source from the content-addressed store, hash-verified

364
365
366def iscomplexfunction_warn(rout):
367 if iscomplexfunction(rout):
368 outmess("""\
369 **************************************************************
370 Warning: code with a function returning complex value
371 may not work correctly with your Fortran compiler.
372 When using GNU gcc/g77 compilers, codes should work
373 correctly for callbacks with:
374 f2py -c -DF2PY_CB_RETURNCOMPLEX
375 **************************************************************\n""")
376 return 1
377 return 0
378
379
380def isstringfunction(rout):

Callers

nothing calls this directly

Calls 2

iscomplexfunctionFunction · 0.85
outmessFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…