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

Method as_list

lib/matplotlib/figure.py:83–85  ·  view source on GitHub ↗

List the Axes that have been added to the figure.

(self)

Source from the content-addressed store, hash-verified

81 self._counter = itertools.count()
82
83 def as_list(self):
84 """List the Axes that have been added to the figure."""
85 return [*self._axes] # This relies on dict preserving order.
86
87 def remove(self, a):
88 """Remove the Axes from the stack."""

Callers 4

mainMethod · 0.80
mathMethod · 0.80
auto_delimMethod · 0.80
axesMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected