mpl version 1.0.0

file: axes.py
line: 7214

<<<
         nr, nc = C.shape
===
         nr, nc = C.shape[:2]
 >>>

...................

While you are at it, you could also change line 6759


             numRows, numCols = C.shape

to

             numRows, numCols = C.shape[:2]

(still some other things further down then crash, but this [second fix] 
is a start on that)

A lot more work will be needed to make everything (_pcolorargs, 
PcolorImage, pcolorfast,...) work with RGB(A) arrays.  How do I get a 
password/user name to check you the svn sources so I can send in patches 
in a more useful way?  Just sign up for the devlop mailing list?

-Alexander

------------------------------------------------------------------------------
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to