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

Function errmess

numpy/f2py/cfuncs.py:20–27  ·  view source on GitHub ↗

Write an error message to stderr. This indirection is needed because sys.stderr might not always be available (see #26862).

(s: str)

Source from the content-addressed store, hash-verified

18
19
20def errmess(s: str) -> None:
21 """
22 Write an error message to stderr.
23
24 This indirection is needed because sys.stderr might not always be available (see #26862).
25 """
26 if sys.stderr is not None:
27 sys.stderr.write(s)
28
29##################### Definitions ##################
30

Callers 15

load_f2cmap_fileFunction · 0.85
getctypeFunction · 0.85
getstrlengthFunction · 0.85
getarrdimsFunction · 0.85
getpydocsignFunction · 0.85
sign2mapFunction · 0.85
routsign2mapFunction · 0.85
append_needsFunction · 0.85
get_needsFunction · 0.85
scaninputlineFunction · 0.85
run_mainFunction · 0.85
getfortrannameFunction · 0.85

Calls 1

writeMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…