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

Method _release

lib/matplotlib/widgets.py:3986–3992  ·  view source on GitHub ↗
(self, event)

Source from the content-addressed store, hash-verified

3984
3985 @_call_with_reparented_event
3986 def _release(self, event):
3987 if self.verts is not None:
3988 self.verts.append(self._get_data(event))
3989 self.onselect(self.verts)
3990 self._selection_artist.set_data([[], []])
3991 self._selection_artist.set_visible(False)
3992 self.verts = None
3993
3994 def _onmove(self, event):
3995 if self.verts is None:

Callers

nothing calls this directly

Calls 4

_get_dataMethod · 0.80
onselectMethod · 0.45
set_dataMethod · 0.45
set_visibleMethod · 0.45

Tested by

no test coverage detected