This file is indexed.

/usr/lib/python2.7/dist-packages/pyvows/version.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
# -*- coding: utf-8 -*-
'''PyVows' version number.
'''


# 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

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

__version__ = (2, 0, 6)

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


def to_str():
    '''Returns a string containing PyVows' version number.'''
    return '.'.join([str(item) for item in __version__])