Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 03ad3d8

Browse files
committed
regenerate pyplot with correct version
1 parent 56385a9 commit 03ad3d8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lib/matplotlib/pyplot.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2640,12 +2640,12 @@ def hist(
26402640
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
26412641
@_autogen_docstring(Axes.hist2d)
26422642
def hist2d(
2643-
x, y, bins=10, range=None, normed=False, weights=None,
2644-
cmin=None, cmax=None, *, data=None, **kwargs):
2643+
x, y, bins=10, range=None, density=None, weights=None,
2644+
cmin=None, cmax=None, normed=None, *, data=None, **kwargs):
26452645
__ret = gca().hist2d(
2646-
x, y, bins=bins, range=range, normed=normed, weights=weights,
2647-
cmin=cmin, cmax=cmax, **({"data": data} if data is not None
2648-
else {}), **kwargs)
2646+
x, y, bins=bins, range=range, density=density,
2647+
weights=weights, cmin=cmin, cmax=cmax, normed=normed,
2648+
**({"data": data} if data is not None else {}), **kwargs)
26492649
sci(__ret[-1])
26502650
return __ret
26512651

0 commit comments

Comments
 (0)