Get the current :class:`State` of the parser.
(self)
| 2551 | font = property(_get_font, _set_font) |
| 2552 | |
| 2553 | def get_state(self): |
| 2554 | """ |
| 2555 | Get the current :class:`State` of the parser. |
| 2556 | """ |
| 2557 | return self._state_stack[-1] |
| 2558 | |
| 2559 | def pop_state(self): |
| 2560 | """ |
no outgoing calls