This file is indexed.

/usr/lib/python2.7/dist-packages/pyxb/bundles/wssplat/httpbind.py is in python-pyxb-bundles-wssplat 1.2.3+dfsg-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
from pyxb.bundles.wssplat.raw.httpbind import *
import pyxb.bundles.wssplat.raw.httpbind as raw_httpbind
from pyxb.bundles.wssplat.wsdl11 import _WSDL_binding_mixin, _WSDL_port_mixin, _WSDL_operation_mixin

class bindingType (raw_httpbind.bindingType, _WSDL_binding_mixin):
    pass
raw_httpbind.bindingType._SetSupersedingClass(bindingType)

class addressType (raw_httpbind.addressType, _WSDL_port_mixin):
    pass
raw_httpbind.addressType._SetSupersedingClass(addressType)

class operationType (raw_httpbind.operationType, _WSDL_operation_mixin):
    def locationInformation (self):
        return self.location()
raw_httpbind.operationType._SetSupersedingClass(operationType)