We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7e286e commit f94fce6Copy full SHA for f94fce6
lib/matplotlib/cbook.py
@@ -880,8 +880,18 @@ class GrouperView:
880
def __init__(self, grouper): self._grouper = grouper
881
def __contains__(self, item): return item in self._grouper
882
def __iter__(self): return iter(self._grouper)
883
- def joined(self, a, b): return self._grouper.joined(a, b)
884
- def get_siblings(self, a): return self._grouper.get_siblings(a)
+
+ def joined(self, a, b):
885
+ """
886
+ Return whether *a* and *b* are members of the same set.
887
888
+ return self._grouper.joined(a, b)
889
890
+ def get_siblings(self, a):
891
892
+ Return all of the items joined with *a*, including itself.
893
894
+ return self._grouper.get_siblings(a)
895
896
897
def simple_linear_interpolation(a, steps):
0 commit comments