This file is indexed.

/usr/share/pyshared/mdp/graph/__init__.py is in python-mdp 3.3-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
from graph import ( Graph, GraphEdge, GraphException, GraphNode,
                    GraphTopologicalException, is_sequence,
                    recursive_map, recursive_reduce)

__all__ = ['Graph', 'GraphEdge', 'GraphException', 'GraphNode',
           'GraphTopologicalException', 'is_sequence',
           'recursive_map', 'recursive_reduce']

from mdp.utils import fixup_namespace
fixup_namespace(__name__, __all__,
                ('graph','fixup_namespace',))