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

Method remove

lib/matplotlib/cbook.py:899–902  ·  view source on GitHub ↗

Remove *a* from the grouper, doing nothing if it is not there.

(self, a)

Source from the content-addressed store, hash-verified

897 return (self._mapping.get(a, object()) is self._mapping.get(b))
898
899 def remove(self, a):
900 """Remove *a* from the grouper, doing nothing if it is not there."""
901 self._mapping.pop(a, {a}).remove(a)
902 self._ordering.pop(a, None)
903
904 def __iter__(self):
905 """

Callers 2

test_grouperFunction · 0.95
get_siblingsMethod · 0.45

Calls 1

popMethod · 0.45

Tested by 1

test_grouperFunction · 0.76