This file is indexed.

/usr/lib/python2.7/dist-packages/kombu/async/__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
# -*- coding: utf-8 -*-
"""Event loop."""
from __future__ import absolute_import, unicode_literals

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']