This file is indexed.

/usr/share/doc/python-libavg/examples/attributes.py is in python-libavg 1.7.1-0ubuntu1.

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

from libavg import avg

player = avg.Player.get()

player.loadFile("text.avg")
node = player.getElementByID("HelloText")
print node.x
node.x = 200
player.play()