def e(where, message): """ S.e(where) -> string """ type_check.string(where) res = [time_utils.default(), E, "[", where, "] ", message] out = "".join(res) global isprint if isprint: out_log(out) return out
def v(where, message): # real signature unknown; restored from __doc__ """ S.v(where) -> string """ type_check.string(where) res = [time_utils.default(), V, "[", where, "] ", message] out = "".join(res) global isprint if isprint: out_log(out) return out