Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/RustPython/RustPython
/ inner
Function
inner
Lib/unittest/result.py:14–17 ·
view source on GitHub ↗
(self, *args, **kw)
Source
from the content-addressed store, hash-verified
12
def
failfast(method):
13
@wraps(method)
14
def
inner(self, *args, **kw):
15
if
getattr(self,
'failfast'
, False):
16
self.stop()
17
return
method(self, *args, **kw)
18
return
inner
19
20
STDOUT_LINE =
'\nStdout:\n%s'
Callers
nothing calls this directly
Calls
3
getattr
Function · 0.85
method
Function · 0.85
stop
Method · 0.45
Tested by
no test coverage detected