(*args)
| 75 | |
| 76 | # Stdoutln asynchronously writes to sys.stdout and adds a new line to input. |
| 77 | def stdoutln(*args): |
| 78 | args = args + ("\n",) |
| 79 | stdout(*args) |
| 80 | |
| 81 | # Shorten long strings for logging. |
| 82 | def clip_long_string(obj): |
no test coverage detected
searching dependent graphs…