(self)
| 129 | f.flush() |
| 130 | |
| 131 | def flush(self): |
| 132 | for f in self.files: |
| 133 | f.flush() |
| 134 | |
| 135 | log_file_obj = open(temp_log_file, 'a', buffering=1) # 行缓冲 |
| 136 | sys.stdout = TeeOutput(sys.__stdout__, log_file_obj) |
no outgoing calls
no test coverage detected