This file is indexed.

/usr/share/doc/python-libavg/examples/timer2.py is in python-libavg 1.8.2-1.

This file is owned by root:root, with mode 0o755.

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
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from libavg import avg, player

def moveText():
    global node
    if node.x < 200:
        node.x += 1

canvas = player.createMainCanvas(size=(640,480))
rootNode = canvas.getRootNode()
node = avg.WordsNode(pos=(10,10), text="Hello World", parent=rootNode)
player.subscribe(player.ON_FRAME, moveText)

player.play()