This file is indexed.

/usr/share/pyshared/pycocumalib/pycocuma.py is in pycocuma 0.4.5-6-7.

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
#!/usr/bin/python
"""\
PyCoCuMa (Pythonic Contact and Customer Management) provides an personal
information system for addresses, telephone numbers and other data associated
with personal contacts.

PyCoCuMa stores it's data in compatible vCard files (*.vcf).

PyCoCuMa was programmed by Henning Jacobs <henning@jacobs1.de>.
PyCoCuMa's Homepage: http://www.srcco.de
"""
#  Copyright (C) 2004  Henning Jacobs <henning@srcco.de>
#
#  This program is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation; either version 2 of the License, or
#  (at your option) any later version.
#
#  $Id: pycocuma.py 82 2004-07-11 13:01:44Z henning $

def run():
    from pycocumalib.MainController import MainController
    mainctrl = MainController()
    mainctrl.Run()
    mainctrl.CleanUp()

if __name__ == "__main__":
    run()