MCPcopy Create free account
hub / github.com/FastLED/FastLED / write

Method write

ci/autoresearch/runner.py:58–65  ·  view source on GitHub ↗
(self, s: str)

Source from the content-addressed store, hash-verified

56 self.crash_lines: list[str] = []
57
58 def write(self, s: str) -> int:
59 for line in s.splitlines():
60 for pattern in _STDOUT_CRASH_PATTERNS:
61 if pattern.search(line):
62 self.crash_detected = True
63 self.crash_lines.append(line.strip())
64 break
65 return self._inner.write(s)
66
67 def flush(self) -> None:
68 self._inner.flush()

Callers 7

send_rpcFunction · 0.45
send_rpcFunction · 0.45
_run_connectMethod · 0.45
do_GETMethod · 0.45
_run_bring_up_testsFunction · 0.45
send_rpcFunction · 0.45
send_rpcFunction · 0.45

Calls 1

appendMethod · 0.45

Tested by 4

send_rpcFunction · 0.36
send_rpcFunction · 0.36
send_rpcFunction · 0.36
send_rpcFunction · 0.36