Lines Matching refs:file
67 def _task_print_stack(task, limit, file):
83 print(f'No stack for {task!r}', file=file)
85 print(f'Traceback for {task!r} (most recent call last):', file=file)
87 print(f'Stack for {task!r} (most recent call last):', file=file)
89 traceback.print_list(extracted_list, file=file)
92 print(line, file=file, end='')