From: <ef...@us...> - 2008-06-08 02:25:41
|
Revision: 5422 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5422&view=rev Author: efiring Date: 2008-06-07 19:25:39 -0700 (Sat, 07 Jun 2008) Log Message: ----------- Fix bug in Axes.scatter to make scatter-star_poly.py demo work Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/axes.py trunk/matplotlib/lib/matplotlib/collections.py Modified: trunk/matplotlib/lib/matplotlib/axes.py =================================================================== --- trunk/matplotlib/lib/matplotlib/axes.py 2008-06-08 01:50:33 UTC (rev 5421) +++ trunk/matplotlib/lib/matplotlib/axes.py 2008-06-08 02:25:39 UTC (rev 5422) @@ -4602,7 +4602,7 @@ verts /= rescale collection = mcoll.PolyCollection( - verts, scales, + (verts,), scales, facecolors = colors, edgecolors = edgecolors, linewidths = linewidths, Modified: trunk/matplotlib/lib/matplotlib/collections.py =================================================================== --- trunk/matplotlib/lib/matplotlib/collections.py 2008-06-08 01:50:33 UTC (rev 5421) +++ trunk/matplotlib/lib/matplotlib/collections.py 2008-06-08 02:25:39 UTC (rev 5422) @@ -527,7 +527,7 @@ class BrokenBarHCollection(PolyCollection): """ - A colleciton of horizontal bars spanning yrange with a sequence of + A collection of horizontal bars spanning yrange with a sequence of xranges """ def __init__(self, xranges, yrange, **kwargs): This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |