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

Method poll

ci/util/pio_process_killer.py:378–384  ·  view source on GitHub ↗

Check if process has terminated. Returns: Return code if terminated, None otherwise

(self)

Source from the content-addressed store, hash-verified

376 return self._proc.communicate(input=cast(Any, input), timeout=timeout)
377
378 def poll(self) -> int | None:
379 """Check if process has terminated.
380
381 Returns:
382 Return code if terminated, None otherwise
383 """
384 return self._proc.poll()
385
386 def terminate(self) -> None:
387 """Terminate the process."""

Callers 7

run_testFunction · 0.45
_run_with_timeoutMethod · 0.45
__exit__Method · 0.45

Calls

no outgoing calls