4 lines
87 B
Python
4 lines
87 B
Python
|
import sys
|
||
|
|
||
|
def print_err(*args, **kwargs):
|
||
|
print(*args, file=sys.stderr, **kwargs)
|