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

Function findobj

lib/matplotlib/pyplot.py:367–374  ·  view source on GitHub ↗
(
    o: Artist | None = None,
    match: Callable[[Artist], bool] | type[Artist] | None = None,
    include_self: bool = True
)

Source from the content-addressed store, hash-verified

365
366@_copy_docstring_and_deprecators(Artist.findobj)
367def findobj(
368 o: Artist | None = None,
369 match: Callable[[Artist], bool] | type[Artist] | None = None,
370 include_self: bool = True
371) -> list[Artist]:
372 if o is None:
373 o = gcf()
374 return o.findobj(match, include_self=include_self)
375
376
377_backend_mod: type[matplotlib.backend_bases._Backend] | None = None

Callers

nothing calls this directly

Calls 2

gcfFunction · 0.85
findobjMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…