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

Method get_status

lib/matplotlib/widgets.py:1477–1482  ·  view source on GitHub ↗

Return a list of the status (True/False) of all of the check buttons.

(self)

Source from the content-addressed store, hash-verified

1475 self._observers.process('clicked', None)
1476
1477 def get_status(self):
1478 """
1479 Return a list of the status (True/False) of all of the check buttons.
1480 """
1481 return [not colors.same_color(color, colors.to_rgba("none"))
1482 for color in self._buttons.get_facecolors()]
1483
1484 def get_checked_labels(self):
1485 """Return a list of labels currently checked by user."""

Callers 3

set_check_propsMethod · 0.95
get_checked_labelsMethod · 0.95
test_CheckButtonsFunction · 0.95

Calls 1

to_rgbaMethod · 0.45

Tested by 1

test_CheckButtonsFunction · 0.76