Extract the I{items} from a suds object much like the items() method works on I{dict}. @param sobject: A suds object @type sobject: L{Object} @return: A list of items contained in I{sobject}. @rtype: [(key, value),...]
(cls, sobject)
| 61 | """ |
| 62 | @classmethod |
| 63 | def items(cls, sobject): |
| 64 | """ |
| 65 | Extract the I{items} from a suds object much like the |
| 66 | items() method works on I{dict}. |
| 67 | @param sobject: A suds object |
| 68 | @type sobject: L{Object} |
| 69 | @return: A list of items contained in I{sobject}. |
| 70 | @rtype: [(key, value),...] |
| 71 | """ |
| 72 | return sudsobject.items(sobject) |
| 73 | |
| 74 | @classmethod |
| 75 | def dict(cls, sobject): |
no outgoing calls
no test coverage detected