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

Method list_all

lib/matplotlib/backends/registry.py:250–265  ·  view source on GitHub ↗

Return list of all known backends. These include built-in backends and those obtained at runtime either from entry points or explicit ``module://some.backend`` syntax. Entry points will be loaded if they haven't been already. Returns -------

(self)

Source from the content-addressed store, hash-verified

248 return False
249
250 def list_all(self):
251 """
252 Return list of all known backends.
253
254 These include built-in backends and those obtained at runtime either from entry
255 points or explicit ``module://some.backend`` syntax.
256
257 Entry points will be loaded if they haven't been already.
258
259 Returns
260 -------
261 list of str
262 Backend names.
263 """
264 self._ensure_entry_points_loaded()
265 return [*self.list_builtin(), *self._backend_to_gui_framework]
266
267 def list_builtin(self, filter_=None):
268 """

Callers 4

validate_backendFunction · 0.80
test_entry_points_inlineFunction · 0.80
test_entry_points_ipymplFunction · 0.80

Calls 2

list_builtinMethod · 0.95

Tested by 3

test_entry_points_inlineFunction · 0.64
test_entry_points_ipymplFunction · 0.64