(
rc: dict[RcKeyType, Any] | None = None,
fname: str | pathlib.Path | os.PathLike | None = None,
)
| 799 | |
| 800 | @_copy_docstring_and_deprecators(matplotlib.rc_context) |
| 801 | def rc_context( |
| 802 | rc: dict[RcKeyType, Any] | None = None, |
| 803 | fname: str | pathlib.Path | os.PathLike | None = None, |
| 804 | ) -> AbstractContextManager[None]: |
| 805 | return matplotlib.rc_context(rc, fname) |
| 806 | |
| 807 | |
| 808 | @_copy_docstring_and_deprecators(matplotlib.rcdefaults) |
no outgoing calls
searching dependent graphs…