This file is indexed.

/usr/share/doc/python-enable/examples/kiva/simple.py is in python-enable 4.3.0-2.

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
from kiva import constants
from kiva.image import GraphicsContext

gc = GraphicsContext((100,100))

gc.clear()
gc.set_line_cap(constants.CAP_SQUARE)
gc.set_line_join(constants.JOIN_MITER)
gc.set_stroke_color((1,0,0))
gc.set_fill_color((0,0,1))
gc.rect(0, 0, 30, 30)
gc.draw_path()

gc.save("simple.bmp")