This file is indexed.

/usr/share/doc/python-pmw-doc/examples/Grid.py is in python-pmw-doc 1.3.2-6build1.

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
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
title = 'Grid geometry manager demonstration'

# Import Pmw from this directory tree.
import sys
sys.path[:0] = ['../../..']

import Tkinter
import Pmw

class Demo:
    def __init__(self, parent):
	frame = Tkinter.Frame(parent)
	frame.pack(fill = 'both', expand = 1)

	button = {}
	for num in range(0, 10):
	    button[num] = Tkinter.Button(frame, text = 'Button ' + str(num))

	button[0].grid(column=0, row=0, rowspan=2, sticky='nsew')
	button[1].grid(column=1, row=0, columnspan=3, sticky='nsew')
	button[2].grid(column=1, row=1, rowspan=2, sticky='nsew')
	button[3].grid(column=2, row=1)
	button[4].grid(column=3, row=1)
	button[5].grid(column=0, row=2)
	button[6].grid(column=0, row=3, columnspan=2, sticky='nsew')
	button[7].grid(column=2, row=2, columnspan=2, rowspan=2, sticky='nsew')
	button[8].grid(column=0, row=4)
	button[9].grid(column=3, row=4, sticky='e')

	frame.grid_rowconfigure(3, weight=1)
	frame.grid_columnconfigure(3, weight=1)

######################################################################

# Create demo in root window for testing.
if __name__ == '__main__':
    root = Tkinter.Tk()
    Pmw.initialise(root)
    root.title(title)

    exitButton = Tkinter.Button(root, text = 'Exit', command = root.destroy)
    exitButton.pack(side = 'bottom')
    widget = Demo(root)
    root.mainloop()