/usr/lib/python2.7/dist-packages/jenkinsapi/plugin.py is in python-jenkinsapi 0.2.16-2.
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 | """
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__
|