This file is indexed.

/usr/lib/python2.7/dist-packages/wxglade/widgets/custom_widget/__init__.py is in python-wxglade 0.6.8-2.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
# __init__.py: custom widget module initialization
# $Id: __init__.py,v 1.7 2007/03/27 07:02:01 agriggio Exp $
#
# Copyright (c) 2002-2007 Alberto Griggio <agriggio@users.sourceforge.net>
# License: MIT (see license.txt)
# THIS PROGRAM COMES WITH NO WARRANTY

def initialize():
    import common
    import codegen
    codegen.initialize()
    if common.use_gui:
        import custom_widget
        return custom_widget.initialize()