/usr/share/pyshared/pyarco/Conio.py is in atheist 0.20110402-2.
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 | ESC = chr(27)
GREY = ESC+'[38m'
RED = ESC+'[31m'
PURPLE = ESC+'[95m'
GREEN = ESC+'[32m'
LIGHT_RED = ESC+'[1;91m'
LIGHT_RED_BG = ESC+'[7;91m'
LIGHT_GREEN_BG = ESC+'[7;32m'
BOLD = ESC+'[1m'
HIGH = ESC+'[1m'
NORM = ESC+'[m'
CLS = ESC+'[2J' + ESC+'[0;0f'
|