Return the `.GridSpec` associated with the subplot, or None.
(self)
| 849 | self._set_position(subplotspec.get_position(self.get_figure(root=False))) |
| 850 | |
| 851 | def get_gridspec(self): |
| 852 | """Return the `.GridSpec` associated with the subplot, or None.""" |
| 853 | return self._subplotspec.get_gridspec() if self._subplotspec else None |
| 854 | |
| 855 | def get_window_extent(self, renderer=None): |
| 856 | """ |
no outgoing calls