(self, char)
| 384 | |
| 385 | @_dispatch(min=0, max=127, state=_dvistate.inpage) |
| 386 | def _set_char_immediate(self, char): |
| 387 | self._put_char_real(char) |
| 388 | if isinstance(self.fonts[self.f], cbook._ExceptionInfo): |
| 389 | return |
| 390 | self.h += self.fonts[self.f]._width_of(char) |
| 391 | |
| 392 | @_dispatch(min=128, max=131, state=_dvistate.inpage, args=('olen1',)) |
| 393 | def _set_char(self, char): |
nothing calls this directly
no test coverage detected