This file is indexed.

/usr/lib/python2.7/dist-packages/pyvows/runner/__init__.py is in python-pyvows 2.0.6-2.

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
# -*- coding: utf-8 -*-
'''This package contains different runtime implementations for PyVows.  PyVows will
select the fastest possible runner, using fallbacks if unavailable.
 
'''


try:
    ##  GEvent
    from pyvows.runner.gevent import VowsParallelRunner as VowsRunner
except ImportError as e:
    ##  Sequential
    from pyvows.runner.sequential import VowsSequentialRunner as VowsRunner
finally:
    __all__ = ('VowsRunner')