MNT: Deprecate rcParams._get("backend") by timhoffm · Pull Request #30963 · matplotlib/matplotlib
since 3.10 we have the official API matplotlib.get_backend (auto_select=False). No problems have been reported and matplotlib-inline is using it. Therefore, I remove the provisional status from the auto-select flag.
Additionally, I deprecate the API rcParams._get('backend'), which the above is replacing.
It seems that rcParams._get("backend") is not used anywhere publically, but let's still be defensive and deprecate.
This is working towards removal of dynamic backend state from rcParams #26406.
Follow-up to #29039.