Skip to content

Commit cdaadb8

Browse files
committed
Update pyplot
1 parent 2098d1a commit cdaadb8

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

lib/matplotlib/pyplot.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -2899,11 +2899,12 @@ def stackplot(x, *args, data=None, **kwargs):
28992899
@docstring.copy_dedent(Axes.stem)
29002900
def stem(
29012901
*args, linefmt=None, markerfmt=None, basefmt=None, bottom=0,
2902-
label=None, data=None):
2902+
label=None, use_line_collection=False, data=None):
29032903
return gca().stem(
29042904
*args, linefmt=linefmt, markerfmt=markerfmt, basefmt=basefmt,
2905-
bottom=bottom, label=label, **({"data": data} if data is not
2906-
None else {}))
2905+
bottom=bottom, label=label,
2906+
use_line_collection=use_line_collection, **({"data": data} if
2907+
data is not None else {}))
29072908

29082909

29092910
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.

0 commit comments

Comments
 (0)