This file is indexed.

/usr/share/doc/python-libavg/examples/minimal.py is in python-libavg 1.8.1-3+b1.

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

from libavg import avg, player

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