(rout)
| 364 | |
| 365 | |
| 366 | def 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 | |
| 380 | def isstringfunction(rout): |
nothing calls this directly
no test coverage detected
searching dependent graphs…