This file is indexed.

/usr/lib/python2.7/dist-packages/jenkinsapi/plugin.py is in python-jenkinsapi 0.2.30-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
26
27
"""
Module for jenkinsapi Plugin
"""


class Plugin(object):

    """
    Plugin class
    """

    def __init__(self, plugin_dict):
        assert isinstance(plugin_dict, dict)
        self.__dict__ = plugin_dict

    def __eq__(self, other):
        return self.__dict__ == other.__dict__

    def __str__(self):
        return self.shortName

    def __repr__(self):
        return "<%s.%s %s>" % (
            self.__class__.__module__,
            self.__class__.__name__,
            str(self)
        )