Hi,
On Wed, Sep 19, 2012 at 7:53 PM, Michael Droettboom wrote:
> I have tagged and created a tarball for 1.2.0rc2. The githash is
> 656c88f3e546. The tarball is on the github download page here:
I've noticed that running the tests with the debug flavor of python
2.6 and 2.7 makes the interpret
Could you please change in the current branch in
axes.py, line 7585
(Axes.pcolorfast)
nr, nc = C.shape
to
nr, nc = C.shape[:2]
this way one can pass [nx,ny,3] or [nx,ny,4] arrays to the routine - for
which the PcolorImage it calls is made (style == "pcolorimage")
-Alexander