This file is indexed.

/usr/lib/python2.7/dist-packages/kombu/utils/__init__.py is in python-kombu 4.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
"""DEPRECATED - Import from modules below."""
from __future__ import absolute_import, print_function, unicode_literals

from .collections import EqualityDict
from .compat import fileno, maybe_fileno, nested, register_after_fork
from .div import emergency_dump_state
from .functional import (
    fxrange, fxrangemax, maybe_list, reprcall, retry_over_time,
)
from .imports import symbol_by_name
from .objects import cached_property
from .uuid import uuid

__all__ = [
    'EqualityDict', 'uuid', 'maybe_list',
    'fxrange', 'fxrangemax', 'retry_over_time',
    'emergency_dump_state', 'cached_property',
    'register_after_fork', 'reprkwargs', 'reprcall',
    'symbol_by_name', 'nested', 'fileno', 'maybe_fileno',
]