This file is indexed.

/usr/lib/python2.7/dist-packages/hachoir_wx/frame_view/frame_view.py is in python-hachoir-wx 0.3-3.

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
# -*- coding: utf-8 -*-

from wx import Frame, PreFrame

class frame_view_t(Frame):
    def __init__(self):
        pre = PreFrame()
        self.PostCreate(pre)

    def ready(self):
        self.dispatcher.trigger('frame_view_ready', self)