MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / bubble

Method bubble

lib/matplotlib/figure.py:91–95  ·  view source on GitHub ↗

Move an Axes, which must already exist in the stack, to the top.

(self, a)

Source from the content-addressed store, hash-verified

89 self._axes.pop(a)
90
91 def bubble(self, a):
92 """Move an Axes, which must already exist in the stack, to the top."""
93 if a not in self._axes:
94 raise ValueError("Axes has not been added yet")
95 self._axes[a] = next(self._counter)
96
97 def add(self, a):
98 """Add an Axes to the stack, ignoring it if already present."""

Callers 1

scaMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected