9 lines
126 B
Python
9 lines
126 B
Python
import sys
|
|
|
|
|
|
def warning(*objs):
|
|
"""
|
|
Write warnings to stderr.
|
|
"""
|
|
print("WARNING: ", *objs, file=sys.stderr)
|