This file is indexed.

/usr/lib/python2.7/dist-packages/pyvows/__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
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# -*- coding: utf-8 -*-
'''PyVows is a Behavior-Driven Development framework for Python.  (And and it
is **fast**!)

---

PyVows runs tests asynchronously.  This makes tests which target I/O
run much faster, by running them concurrently. A faster test suite gets
run more often, thus improving the feedback cycle.

PyVows is inspired by Vows, a BDD framework for Node.js.

----

You typically shouldn't need to import any specific modules from the `pyvows`
package.  Normal use is:

    from pyvows import Vows, expect

----

To learn more, check out:   http://pyvows.org

'''


# pyVows testing engine
# https://github.com/heynemann/pyvows
#
# Licensed under the MIT license:
# http://www.opensource.org/licenses/mit-license
# Copyright (c) 2011 Bernardo Heynemann heynemann@gmail.com

# flake8: noqa

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

try:
    from preggy import expect
except:
    pass

try:
    from pyvows.core import Vows, expect
except ImportError:
    pass