This file is indexed.

/usr/share/pymt-examples/widgets/stencil.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
19
20
21
22
23
24
# Just a test with stacking stencil.
# InnerWindow use stencil for clipping content draw
# And Kinetic too.

# Scatter plane is here to test that stacking with different matrix
# transformation will work too.

from pymt import *

mms = MTWindow()
w = MTInnerWindow(size=(600, 600))
mms.add_widget(w)

p = MTScatterPlane()
k = MTKineticList(pos=(20, 20), size=(400, 400), w_limit=3)
p.add_widget(k)
w.add_widget(p)

d = range(0, 10)
for x in d:
    item = MTKineticItem(label=str(x))
    k.add_widget(item)

runTouchApp()