This file is indexed.

/usr/lib/python2.7/dist-packages/twython/advisory.py is in python-twython 3.4.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
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- coding: utf-8 -*-

"""
twython.advisory
~~~~~~~~~~~~~~~~

This module contains Warning classes for Twython to specifically
alert the user about.

This mainly is because Python 2.7 > mutes DeprecationWarning and when
we deprecate a method or variable in Twython, we want to use to see
the Warning but don't want ALL DeprecationWarnings to appear,
only TwythonDeprecationWarnings.
"""


class TwythonDeprecationWarning(DeprecationWarning):
    """Custom DeprecationWarning to be raised when methods/variables
    are being deprecated in Twython. Python 2.7 > ignores DeprecationWarning
    so we want to specifcally bubble up ONLY Twython Deprecation Warnings
    """
    pass