This file is indexed.

/usr/share/kivy-examples/kv/app_stencil.kv is in python-kivy-examples 1.9.1-1build3.

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
Widget:
    canvas:

        StencilPush

        # create a rectangle mask, from pos 100, 100, with a 100, 100 size.
        Rectangle:
            pos: 100, 100
            size: 100, 100

        StencilUse

        # we want to show a big green rectangle, however, the previous stencil
        # mask will crop us :)
        Color:
            rgb: 0, 1, 0
        Rectangle:
            size: 900, 900

        StencilUnUse

        # Remove the mask previously set
        Rectangle:
            pos: 100, 100
            size: 100, 100

        StencilPop