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

Method check_gcc_version_at_least

numpy/distutils/command/config.py:435–438  ·  view source on GitHub ↗

Return True if the GCC version is greater than or equal to the specified version.

(self, major, minor=0, patchlevel=0)

Source from the content-addressed store, hash-verified

433 return check_gcc_variable_attribute(self, attribute)
434
435 def check_gcc_version_at_least(self, major, minor=0, patchlevel=0):
436 """Return True if the GCC version is greater than or equal to the
437 specified version."""
438 return check_gcc_version_at_least(self, major, minor, patchlevel)
439
440 def get_output(self, body, headers=None, include_dirs=None,
441 libraries=None, library_dirs=None,

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected