From: Tobias W. <wi...@ph...> - 2010-07-23 07:36:21
|
Hi, > On Thursday 22 July 2010 Michael Droettboom wrote: > Which backend are you using? I tried this with GTKAgg and Qt4Agg, its was working with 0.99.0 and 0.99.1 on Debian/Squeeze and 0.99.0 on Scientific Linux 5. I first noticed this with 0.99.3 on Debian/Squeeze, but it is the same with with 1.0.0 on Debian/Squeeze and Scientific Linux 5. > Can you provide a short script that > reproduces the bug? This script reproduces the behaviour: import pylab from math import * d = [[1,2],[3,4]] f = pylab.figure() pylab.subplot(111, projection='hammer') pylab.imshow(d, extent=(-pi,pi,-pi/2,pi/2)) f.show() It creates the following plot in version 0.99.0 http://web.physik.rwth-aachen.de/~winchen/mpl_0990.png and in version 0.99.3 http://web.physik.rwth-aachen.de/~winchen/mpl_0993.png Best regards, Tobias |