This file is indexed.

/usr/lib/python2.7/dist-packages/libavg/samples/anim2.py is in python-libavg 1.8.1-3+b1.

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

from libavg import *

def startAnim():
    animObj.start()

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

animObj = ParallelAnim(
    [LinearAnim(node, "x", 2000, 0, 200),
     LinearAnim(node, "y", 2000, 0, 10)])
player.setTimeout(0, startAnim)

player.play()