This file is indexed.

/usr/lib/python2.7/dist-packages/constantly/__init__.py is in python-constantly 15.1.0-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
16
17
18
19
20
21
22
23
24
# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.

from constantly._constants import (
    NamedConstant, Names, ValueConstant, Values, FlagConstant, Flags
)

from ._version import get_versions
__version__ = get_versions()['version']
del get_versions

__author__  = "Twisted Matrix Laboratories"
__license__ = "MIT"
__copyright__ = "Copyright 2011-2015 {0}".format(__author__)


__all__ = [
    'NamedConstant',
    'ValueConstant',
    'FlagConstant',
    'Names',
    'Values',
    'Flags',
]