This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from contextlib import contextmanager | |
| import sys | |
| import re | |
| # Backup original functionality | |
| _stdout = sys.stdout | |
| _stderr = sys.stderr | |
| _stdin = sys.stdin | |
| # Used to temporarily stop output to log file |