This file is indexed.

/usr/share/pyshared/numm/term.py is in python-numm 0.5-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import copy
import termios

LFLAG = 3
CC = 6

def read_mode(fd):
    return termios.tcgetattr(fd)

def write_mode(fd, mode):
    termios.tcsetattr(fd, termios.TCSAFLUSH, mode)

def set_cbreak(mode):
    mode[LFLAG] &= ~(termios.ECHO | termios.ICANON)
    mode[CC][termios.VMIN] = 1
    mode[CC][termios.VTIME] = 0

class Terminal(object):
    def __init__(self, fd):
        self.fd = fd
        self.mode = read_mode(fd)
        self.restore = []

    def __enter__(self):
        self.restore.append(copy.deepcopy(self.mode))

    def __exit__(self, exc_type, exc, tb):
        write_mode(self.fd, self.restore.pop())

    def set_cbreak(self):
        set_cbreak(self.mode)
        write_mode(self.fd, self.mode)