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

Skip to content

Commit bf17e07

Browse files
committed
prepping for 0.70
svn path=/trunk/matplotlib/; revision=834
1 parent 0c5cb9b commit bf17e07

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

TODO

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -620,3 +620,6 @@ ZeroDivisionError: SeparableTransformation::eval_scalars yin interval is zero; c
620620

621621
-- imshow tick labeling buck with aspect preserve
622622

623+
-- scatter_demo2 svg colorbar placement bug
624+
625+
-- tex_rotation svg line bug (clipping??)

lib/matplotlib/axes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1425,7 +1425,7 @@ def hist(self, x, bins=10, normed=0, bottom=0):
14251425
n,bins = mlab.hist(x, bins, normed)
14261426
width = 0.9*(bins[1]-bins[0])
14271427
patches = self.bar(bins, n, width=width, bottom=bottom)
1428-
return n, bins, patches
1428+
return n, bins, silent_list('Patch', patches)
14291429

14301430
def hold(self, b=None):
14311431
"""\

0 commit comments

Comments
 (0)