This file is indexed.

/usr/lib/python2.7/dist-packages/wxglade/widgets/spacer/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
# lisp_codegen.py : lisp generator functions for spacers
# $Id: lisp_codegen.py,v 1.2 2007/02/09 22:24:06 dinogen 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


class LispCodeGenerator:
    def get_code(self, spacer):
        prop = spacer.properties
        width = prop.get('width', '0')
        height = prop.get('height', '0')
        # we must use the hack in plgen.add_sizeritem (see pl_codegen.py)
        spacer.name = '%s, %s' % (width, height)
        return [], [], []

# end of class LispCodeGenerator


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

    plgen = common.code_writers.get('lisp')
    if plgen:
        plgen.add_widget_handler('spacer', LispCodeGenerator())