5 lines
No EOL
115 B
Python
5 lines
No EOL
115 B
Python
import sys
|
|
|
|
def print_err(*args, **kwargs):
|
|
''' print to stderr '''
|
|
print(*args, file=sys.stderr, **kwargs) |