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