This file is indexed.

/usr/lib/python2.7/dist-packages/wxglade/widgets/spin_ctrl/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
45
46
47
48
# lisp_codegen.py : lisp generator functions for wxSpinCtrl objects
# $Id: lisp_codegen.py,v 1.1 2005/09/22 07:00:42 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


class LispCodeGenerator:
    def get_code(self, obj):
        codegen = common.code_writers['lisp']
        prop = obj.properties
        id_name, id = codegen.generate_code_id(obj)
        value = prop.get('value', '')

        try: min_v, max_v = [ s.strip() for s in \
                              prop.get('range', '0, 100').split(',') ]
        except: min_v, max_v = '0', '100'

        if not obj.parent.is_toplevel:
            parent = '(slot-%s obj)' % obj.parent.name
        else:
            parent = '(slot-top-window obj)'

        style = prop.get("style")
        if not style:
            style = 'wxSP_ARROW_KEYS'
        else:
            style = codegen.cn_f(style)

        init = []
        if id_name: init.append(id_name)

        init.append('(setf (slot-%s obj) (wxSpinCtrl_Create %s %s %s -1 -1 -1 -1 %s %s %s %s))\n'
                    % (obj.name, parent, id, value, style, min_v, max_v, value))
        props_buf = codegen.generate_common_properties(obj)
        return init, props_buf, []

# end of class LispCodeGenerator

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

    codegen = common.code_writers.get('lisp')
    if codegen:
        codegen.add_widget_handler('wxSpinCtrl', LispCodeGenerator())