This file is indexed.

/usr/lib/python2.7/dist-packages/wxglade/widgets/custom_widget/lisp_codegen.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
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
# perl_codegen.py : perl generator functions for CustomWidget objects
# $Id: lisp_codegen.py,v 1.1 2005/09/22 06:59:00 efuzzyone Exp $
#
# Copyright (c) 2002-2004 D.H. aka crazyinsomniac on sourceforge.net
# License: MIT (see license.txt)
# THIS PROGRAM COMES WITH NO WARRANTY


import common
from codegen import ArgumentsCodeHandler, _fix_arguments


class LispCodeGenerator:
    def get_code(self, widget):
        init = []
        plgen = common.code_writers['lisp']
        prop = widget.properties
        id_name, id = plgen.generate_code_id(widget)

        if not widget.parent.is_toplevel:
            parent = '(object-%s self)' % widget.parent.name
        else:
            parent = 'nil'

        
        if id_name: init.append(id_name)
        arguments = _fix_arguments(prop.get('arguments', []), parent, id, prop.get('size', "-1, -1"))
        init.append('use %s;\n' % widget.klass ) # yuck
        init.append('$self->{%s} = %s->new(%s);\n' %
            (widget.name, widget.klass, ", ".join(arguments)))
        props_buf = plgen.generate_common_properties(widget)

        return init, props_buf, []

# end of class PerlCodeGenerator

def initialize():
    common.class_names['CustomWidget'] = 'CustomWidget'

    plgen = common.code_writers.get('lisp')
    if plgen:
        plgen.add_widget_handler('CustomWidget', LispCodeGenerator())
        plgen.add_property_handler('arguments', ArgumentsCodeHandler,
                                    'CustomWidget')