()
| 779 | |
| 780 | |
| 781 | def get_stdout_encoding(): |
| 782 | encoding = getattr(sys.__stdout__, 'encoding', None) |
| 783 | if encoding is None: |
| 784 | encoding = 'utf-8' |
| 785 | return encoding |
| 786 | |
| 787 | |
| 788 | def _wait_and_collect_mem(process): |
no outgoing calls
no test coverage detected