(input_stream)
| 24 | return root |
| 25 | |
| 26 | def readStream(input_stream): |
| 27 | docIS=DOMInputSource() |
| 28 | docIS.byteStream=input_stream |
| 29 | doc= DOMBuilder().parse(docIS) |
| 30 | |
| 31 | root=doc.lastChild |
| 32 | return root |
| 33 | def get_text_in_children(n): |
| 34 | t = "" |
| 35 | for c in n.childNodes: |
no outgoing calls
no test coverage detected