Return the `.TexManager` instance.
(self)
| 619 | return 1, 1 |
| 620 | |
| 621 | def get_texmanager(self): |
| 622 | """Return the `.TexManager` instance.""" |
| 623 | if self._texmanager is None: |
| 624 | self._texmanager = TexManager() |
| 625 | return self._texmanager |
| 626 | |
| 627 | def new_gc(self): |
| 628 | """Return an instance of a `.GraphicsContextBase`.""" |
no test coverage detected