Writes a message to sys.stderr and stops.
The arguments are one or more strings comprising the
message.
# - - - f a t a l
def fatal ( *L ):
'''Write an error message and stop.
[ L is a list of strings ->
sys.stderr +:= concatenated elements of L
stop execution ]
'''
print >>sys.stderr, "*** Error: %s" % (''.join(L))
sys.exit(1)