Пример #1
0
def input_idle(data):
    (value, ) = uvarintsDecode(data)
    return '%d' % value
Пример #2
0
def input_idle(data):
    (value,) = uvarintsDecode(data)
    return '%d' % value
Пример #3
0
def mouse_pos(data):
    (x, y) = uvarintsDecode(data)
    return '(%d, %d)' % (x, y)
Пример #4
0
def mouse_pos(data):
    (x, y) = uvarintsDecode(data)
    return '(%d, %d)' % (x, y)