This file is indexed.

/usr/lib/python2.7/dist-packages/betamax/__init__.py is in python-betamax 0.5.1-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
21
22
23
24
25
"""
betamax
=======

See http://betamax.rtfd.org/ for documentation.

:copyright: (c) 2013 by Ian Cordasco
:license: Apache 2.0, see LICENSE for more details

"""

from .decorator import use_cassette
from .exceptions import BetamaxError
from .matchers import BaseMatcher
from .recorder import Betamax
from .serializers import BaseSerializer

__all__ = ('BetamaxError', 'Betamax', 'BaseMatcher', 'BaseSerializer',
           'use_cassette')
__author__ = 'Ian Cordasco'
__copyright__ = 'Copyright 2013-2014 Ian Cordasco'
__license__ = 'Apache 2.0'
__title__ = 'betamax'
__version__ = '0.5.1'
__version_info__ = tuple(int(i) for i in __version__.split('.'))