Returns True if the position is currently at the end of the document, of False otherwise.
(self)
| 1620 | |
| 1621 | @property |
| 1622 | def at_end(self): |
| 1623 | """Returns True if the position is currently at the end of the |
| 1624 | document, of False otherwise. |
| 1625 | |
| 1626 | """ |
| 1627 | c = self.peek() |
| 1628 | return (not c) |
| 1629 | |
| 1630 | def at_ws(self, allow_unicode_whitespace=True): |
| 1631 | """Returns True if the current position contains a white-space |