This file is indexed.

/usr/lib/python3/dist-packages/ginga/gw/Widgets.py is in python3-ginga 2.6.1-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
15
16
17
18
19
#
# Figure out which widget set we are using and import those widget wrappers

from ginga import toolkit
tkname = toolkit.get_family()

if tkname == 'qt':
    from ginga.qtw.Widgets import *

elif tkname == 'gtk':
    from ginga.gtkw.Widgets import *

elif tkname == 'gtk3':
    from ginga.gtk3w.Widgets import *

elif tkname == 'pg':
    from ginga.web.pgw.Widgets import *

#END