Exemplo n.º 1
0
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
Exemplo n.º 2
0
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