Function
findobj
(
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) |
| 367 | def 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
Tested by
no test coverage detected
Used in the wild real call sites across dependent graphs
searching dependent graphs…