This file is indexed.

/usr/lib/python2.7/dist-packages/voluptuous/__init__.py is in python-voluptuous 0.9.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
12
13
14
15
# flake8: noqa

try:
    from schema_builder import *
    from validators import *
    from util import *
    from error import *
except ImportError:
    from .schema_builder import *
    from .validators import *
    from .util import *
    from .error import *

__version__ = '0.9.3'
__author__ = 'tusharmakkar08'