MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / LatexError

Class LatexError

lib/matplotlib/backends/backend_pgf.py:196–205  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

194
195
196class LatexError(Exception):
197 def __init__(self, message, latex_output=""):
198 super().__init__(message)
199 self.latex_output = latex_output
200
201 def __str__(self):
202 s, = self.args
203 if self.latex_output:
204 s += "\n" + self.latex_output
205 return s
206
207
208class LatexManager:

Callers 2

_expectMethod · 0.85
__init__Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…