()
| 502 | # |
| 503 | |
| 504 | def _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 |
nothing calls this directly
no test coverage detected
searching dependent graphs…