This file is indexed.

/usr/lib/python3/dist-packages/kombu/async/__init__.py is in python3-kombu 3.0.33-1ubuntu2.

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
# -*- coding: utf-8 -*-
"""
kombu.async
===========

Event loop implementation.

"""
from __future__ import absolute_import

from .hub import Hub, get_event_loop, set_event_loop

from kombu.utils.eventio import READ, WRITE, ERR

__all__ = ['READ', 'WRITE', 'ERR', 'Hub', 'get_event_loop', 'set_event_loop']