This file is indexed.

/usr/lib/python2.7/dist-packages/pymacaroons/binders/__init__.py is in python-pymacaroons 0.13.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
from .base_binder import BaseBinder
from .hash_signatures_binder import HashSignaturesBinder

__all__ = [
    'BaseBinder',
    'HashSignaturesBinder',
]