()
| 1491 | # Support for saving and restoring the imported modules. |
| 1492 | |
| 1493 | def flush_std_streams(): |
| 1494 | if sys.stdout is not None: |
| 1495 | sys.stdout.flush() |
| 1496 | if sys.stderr is not None: |
| 1497 | sys.stderr.flush() |
| 1498 | |
| 1499 | |
| 1500 | def print_warning(msg): |
no test coverage detected
searching dependent graphs…