Esempio n. 1
0
def input_idle(data):
    (value, ) = uvarintsDecode(data)
    return '%d' % value
def input_idle(data):
    (value,) = uvarintsDecode(data)
    return '%d' % value
Esempio n. 3
0
def mouse_pos(data):
    (x, y) = uvarintsDecode(data)
    return '(%d, %d)' % (x, y)
def mouse_pos(data):
    (x, y) = uvarintsDecode(data)
    return '(%d, %d)' % (x, y)