/usr/share/pyshared/pychecker2/Warning.py is in pychecker 0.8.19-12.
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 | class Warning:
def __init__(self, description, message, value = 1):
self.message = message
self.description = description
self.value = value
def __cmp__(self, other):
return cmp(self.message, other.message)
def __repr__(self):
return repr(self.message)
|