MCPcopy Create free account
hub / github.com/numpy/numpy / has_f_sources

Function has_f_sources

numpy/distutils/misc_util.py:528–533  ·  view source on GitHub ↗

Return True if sources contains Fortran files

(sources)

Source from the content-addressed store, hash-verified

526 return language
527
528def has_f_sources(sources):
529 """Return True if sources contains Fortran files """
530 for source in sources:
531 if fortran_ext_match(source):
532 return True
533 return False
534
535def has_cxx_sources(sources):
536 """Return True if sources contains C++ files """

Callers 2

runMethod · 0.90
have_f_sourcesMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected