This file is indexed.

/usr/lib/python2.7/dist-packages/kombu/async/aws/sqs/ext.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 -*-
"""Amazon SQS boto3 interface."""

from __future__ import absolute_import, unicode_literals

try:
    import boto3
except ImportError:
    boto3 = None