8000 Update pyplot · matplotlib/matplotlib@2deac6b · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 2deac6b

Browse files
committed
Update pyplot
1 parent ab51610 commit 2deac6b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

lib/matplotlib/pyplot.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2895,11 +2895,12 @@ def stackplot(x, *args, data=None, **kwargs):
28952895
@docstring.copy_dedent(Axes.stem)
28962896
def stem(
28972897
*args, linefmt=None, markerfmt=None, basefmt=None, bottom=0,
2898-
label=None, data=None):
2898+
label=None, use_line_collection=False, data=None):
28992899
return gca().stem(
29002900
*args, linefmt=linefmt, markerfmt=markerfmt, basefmt=basefmt,
2901-
bottom=bottom, label=label, **({"data": data} if data is not
2902-
None else {}))
2901+
bottom=bottom, label=label,
2902+
use_line_collection=use_line_collection, **({"data": data} if
2903+
data is not None else {}))
29032904

29042905

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

0 commit comments

Comments
 (0)
0