This file is indexed.

/usr/share/pyshared/vtk/__helper.py is in python-vtk 5.8.0-17.5.

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
""" This provides some useful code used by other modules.  This is not to be
used by the end user which is why it is hidden. """

import string, sys
class LinkError(Exception):
    pass

def refine_import_err(mod_name, extension_name, exc):
    """ Checks to see if the ImportError was because the library
    itself was not there or because there was a link error.  If there
    was a link error it raises a LinkError if not it does nothing.

    Keyword arguments
    -----------------

     - mod_name : The name of the Python module that was imported.

     - extension_name : The name of the extension module that is to be
     imported by the module having mod_name.

     - exc : The exception raised when the module called mod_name was
     imported.

    To see example usage look at __init__.py.

    """
    try:
        del sys.modules['vtk.%s'%mod_name]
    except KeyError:
        pass
    if string.find(str(exc), extension_name) == -1:
	raise LinkError, str(exc)