This file is indexed.

/usr/lib/python2.7/dist-packages/pyvows/runner/sequential.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
16
17
18
19
20
21
22
23
24
25
26
27
# -*- coding: utf-8 -*-
'''This is the slowest of PyVows' runner implementations.  But it's also dependency-free; thus, 
it's a universal fallback.  
 
'''

from pyvows.runner.abc import VowsRunnerABC
from pyvows.runner.utils import get_code_for, get_file_info_for, get_topics_for

#-------------------------------------------------------------------------------------------------

class VowsSequentialRunner(object):
     
    def run(self):
        pass
        #for suite, batches in self.suites.items():
        #    for batch in batches:
        #        self.run_context(batch.__name__, batch(None))
         
    def run_context(self, ctx_name, ctx_instance):
        pass
        # setup
        # teardown
        # topic
        # vows
        # subcontexts
        # teardown