1"""Common functions.""" 2 3import sys 4 5 6def log(msg, *args): 7 if args: 8 msg = msg % args 9 print >>sys.stderr, msg 10