10 lines
117 B
Python
10 lines
117 B
Python
|
|
"""Common functions."""
|
||
|
|
|
||
|
|
import sys
|
||
|
|
|
||
|
|
|
||
|
|
def log(msg, *args):
|
||
|
|
if args:
|
||
|
|
msg = msg % args
|
||
|
|
print >>sys.stderr, msg
|