This file is indexed.

/usr/share/doc/tcl-snack-doc/examples/python/MinSect.py is in tcl-snack-doc 2.2.10.20090623-dfsg-4.

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
#! /usr/bin/env python

from Tkinter import *
from tkSnack import *

root = Tkinter.Tk()

initializeSnack(root)

s = Sound(load='ex1.wav')
c = SnackCanvas(height=300, width=300)
c.pack()
c.create_section(0, 0, sound=s, start=6000, end=6100, height=300, width=300)

Button(root, text='Exit', command=root.quit).pack()

root.mainloop()