Skip to content

Commit

Permalink
Restore get_renderer function in deprecated tight_layout
Browse files Browse the repository at this point in the history
  • Loading branch information
oscargus committed Oct 31, 2022
1 parent 54360f3 commit 62bea32
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions lib/matplotlib/tight_layout.py
@@ -1,3 +1,16 @@
from matplotlib._tight_layout import * # noqa: F401, F403
from matplotlib import _api
_api.warn_deprecated("3.6", name=__name__, obj_type="module")


@_api.deprecated("3.6", alternative="figure.canvas.get_renderer()")
def get_renderer(fig):
if fig._cachedRenderer:
return fig._cachedRenderer
else:
canvas = fig.canvas
if canvas and hasattr(canvas, "get_renderer"):
return canvas.get_renderer()
else:
from . import backend_bases
return backend_bases._get_renderer(fig)

0 comments on commit 62bea32

Please sign in to comment.