return the xml encoding of the root element
(self)
| 395 | |
| 396 | @property |
| 397 | def encoding(self): |
| 398 | """return the xml encoding of the root element |
| 399 | """ |
| 400 | root = self.root |
| 401 | if root is not None: |
| 402 | return self.root.docinfo.encoding |
| 403 | |
| 404 | ############## |
| 405 | # Traversing # |
nothing calls this directly
no outgoing calls
no test coverage detected