This file is indexed.

/usr/lib/python2.7/dist-packages/openid/yadis/__init__.py is in python-openid 2.2.5-6.

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
__all__ = [
    'constants',
    'discover',
    'etxrd',
    'filters',
    'manager',
    'parsehtml',
    'services',
    'xri',
    'xrires',
    ]

__version__ = '[library version:1.1.0-rc1]'[17:-1]

# Parse the version info
try:
    version_info = map(int, __version__.split('.'))
except ValueError:
    version_info = (None, None, None)
else:
    if len(version_info) != 3:
        version_info = (None, None, None)
    else:
        version_info = tuple(version_info)