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

Class throw_error

numpy/f2py/auxfuncs.py:592–599  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

590
591
592class throw_error:
593
594 def __init__(self, mess):
595 self.mess = mess
596
597 def __call__(self, var):
598 mess = '\n\n var = %s\n Message: %s\n' % (var, self.mess)
599 raise F2PYError(mess)
600
601
602def l_and(*f):

Callers 1

cb_rules.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected