(self, char)
| 391 | |
| 392 | @_dispatch(min=128, max=131, state=_dvistate.inpage, args=('olen1',)) |
| 393 | def _set_char(self, char): |
| 394 | self._put_char_real(char) |
| 395 | if isinstance(self.fonts[self.f], cbook._ExceptionInfo): |
| 396 | return |
| 397 | self.h += self.fonts[self.f]._width_of(char) |
| 398 | |
| 399 | @_dispatch(132, state=_dvistate.inpage, args=('s4', 's4')) |
| 400 | def _set_rule(self, a, b): |
nothing calls this directly
no test coverage detected