/usr/share/pyshared/pymt/input/shape.py is in python-pymt 0.5.1-0ubuntu3.
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 | '''
Touch Shape: Represent the shape of the touch
'''
__all__ = ('TouchShape', 'TouchShapeRect')
class TouchShape(object):
'''Abstract class for all implementation of a shape'''
pass
class TouchShapeRect(TouchShape):
'''Represent a rectangle shape.'''
__slots__ = ['width', 'height']
def __init__(self):
super(TouchShapeRect, self).__init__()
self.width = 0
self.height = 0
|