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

Function names

lib/matplotlib/_mathtext.py:1926–1931  ·  view source on GitHub ↗
(elt: ParserElement)

Source from the content-addressed store, hash-verified

1924 """
1925
1926 def names(elt: ParserElement) -> T.Generator[str, None, None]:
1927 if isinstance(elt, ParseExpression):
1928 for expr in elt.exprs:
1929 yield from names(expr)
1930 elif elt.resultsName:
1931 yield elt.resultsName
1932
1933 csname = expr.split("{", 1)[0]
1934 err = (csname + "".join("{%s}" % name for name in names(args))

Callers 1

cmdFunction · 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…