Returns the line count of the parsed content (always is `1` for XML).
(self)
| 103 | |
| 104 | @property |
| 105 | def lineno(self) -> int: |
| 106 | """Returns the line count of the parsed content (always is `1` for XML).""" |
| 107 | return self.__raw.lineno() |
| 108 | |
| 109 | @property |
| 110 | def is_finished(self) -> bool: |
no outgoing calls