MCPcopy Index your code
hub / github.com/python/cpython / _flush_std_streams

Function _flush_std_streams

Lib/multiprocessing/util.py:504–512  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

502#
503
504def _flush_std_streams():
505 try:
506 sys.stdout.flush()
507 except (AttributeError, ValueError):
508 pass
509 try:
510 sys.stderr.flush()
511 except (AttributeError, ValueError):
512 pass
513
514#
515# Start a program with only specified fds kept open

Callers

nothing calls this directly

Calls 1

flushMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…