This file is indexed.

/usr/share/doc/python-pybiggles/examples/example1.py is in python-pybiggles 1.6.6-2.

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
17
18
19
20
21
22
23
24
#!/usr/bin/env python

import sys
sys.path.insert(1,'..')

import biggles
import numpy, math

x = numpy.arange( 0, 3*math.pi, math.pi/30 )
c = numpy.cos(x)
s = numpy.sin(x)

p = biggles.FramedPlot()
p.title = "title"
p.xlabel = r"$x$"
p.ylabel = r"$\Theta$"

p.add( biggles.FillBetween(x, c, x, s) )
p.add( biggles.Curve(x, c, color="red") )
p.add( biggles.Curve(x, s, color="blue") )

#p.write_img( 400, 400, "example1.png" )
#p.write_eps( "example1.eps" )
p.show()