This file is indexed.

/usr/share/pygtk/2.0/argtypes/gconf-arg-types.py is in python-gnome2-dev 2.28.1+dfsg-1.

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
import argtypes

class GConfEngineArg (argtypes.ArgType):
    engine = ('    %(name)s = pygconf_engine_from_pyobject (py_%(name)s);\n'
              '    if (PyErr_Occurred ())\n'
              '        return NULL;\n')
        
    def write_param(self, ptype, pname, pdflt, pnull, info):
        # pdflt and pnull not handled - we don't use "default" or "null-ok"
        info.varlist.add ('GConfEngine*', pname)
        info.varlist.add ('PyObject', '*py_' + pname + ' = NULL')
        info.codebefore.append (self.engine % { 'name' : pname })
        info.arglist.append (pname)
        info.add_parselist ('O', ['&py_' + pname], [pname])
        
    def write_return (self, ptype, ownsreturn, info):
        if ptype[-1] == '*':
            ptype = ptype[:-1]
        info.varlist.add (ptype, '*ret')
        if ownsreturn:
            info.varlist.add ('PyObject', '*py_ret')
            info.codeafter.append ('    py_ret = pygconf_engine_new (ret);\n'
                                   '    if (ret != NULL)\n'
                                   '        gconf_engine_unref (ret);\n'
                                   '    return py_ret;')
        else:
            info.codeafter.append ('    /* pygconf_engine_new() handles NULL checking */\n' +
                                   '    return pygconf_engine_new (ret);')

argtypes.matcher.register ("GConfEngine*", GConfEngineArg ())