@@ -280,7 +280,7 @@ def legend(self, *args, **kwargs):
280280
281281 Parameters
282282 ----------
283- handles : sequence of `.Artist`, optional
283+ handles : sequence of ( `.Artist` or tuple of `.Artist`) , optional
284284 A list of Artists (lines, patches) to be added to the legend.
285285 Use this together with *labels*, if you need full control on what
286286 is shown in the legend and the automatic mechanism described above
@@ -289,6 +289,9 @@ def legend(self, *args, **kwargs):
289289 The length of handles and labels should be the same in this
290290 case. If they are not, they are truncated to the smaller length.
291291
292+ If an entry contains a tuple, then the legend handler for all Artists in the
293+ tuple will be placed alongside a single label.
294+
292295 labels : list of str, optional
293296 A list of labels to show next to the artists.
294297 Use this together with *handles*, if you need full control on what
@@ -3436,7 +3439,7 @@ def errorbar(self, x, y, yerr=None, xerr=None,
34363439 If True, will plot the errorbars above the plot
34373440 symbols. Default is below.
34383441
3439- lolims, uplims, xlolims, xuplims : bool, default: False
3442+ lolims, uplims, xlolims, xuplims : bool or array-like , default: False
34403443 These arguments can be used to indicate that a value gives only
34413444 upper/lower limits. In that case a caret symbol is used to
34423445 indicate this. *lims*-arguments may be scalars, or array-likes of
0 commit comments