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

Function CCompiler_find_executables

numpy/distutils/ccompiler.py:100–107  ·  view source on GitHub ↗

Does nothing here, but is called by the get_version method and can be overridden by subclasses. In particular it is redefined in the `FCompiler` class where more documentation can be found.

(self)

Source from the content-addressed store, hash-verified

98## results if used elsewhere. So, you have been warned..
99
100def CCompiler_find_executables(self):
101 """
102 Does nothing here, but is called by the get_version method and can be
103 overridden by subclasses. In particular it is redefined in the `FCompiler`
104 class where more documentation can be found.
105
106 """
107 pass
108
109
110replace_method(CCompiler, 'find_executables', CCompiler_find_executables)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected