Re: [matplotlib-devel] grid bug

2009-04-28 Thread John Hunter
On Tue, Apr 28, 2009 at 10:59 AM, Olivier Feys wrote: > 0.98.5.2 > I also am not seeing it on the 0.98 branch, so the good news is that if we can ever get this release out as planned it should be fixed on the next release. Or if you are happy with svn and a compiler, you can upgrade from svn

Re: [matplotlib-devel] grid bug

2009-04-28 Thread Olivier Feys
0.98.5.2 John Hunter wrote: On Tue, Apr 28, 2009 at 3:18 AM, Olivier Feys wrote: Hi, I found a bug with the grid after passing by a log scale. Here is the sample code reproducing the bug : from pylab import * plot(range(50),range

Re: [matplotlib-devel] grid bug

2009-04-28 Thread John Hunter
On Tue, Apr 28, 2009 at 3:18 AM, Olivier Feys wrote: > Hi, > > I found a bug with the grid after passing by a log scale. > Here is the sample code reproducing the bug : > > from pylab import * > > plot(range(50),range(50)) > draw() > gca().set_yscale('log') > draw() > gca().xaxis.grid() > draw()

[matplotlib-devel] grid bug

2009-04-28 Thread Olivier Feys
Hi, I found a bug with the grid after passing by a log scale. Here is the sample code reproducing the bug : from pylab import * plot(range(50),range(50)) draw() gca().set_yscale('log') draw() gca().xaxis.grid() draw() gca().set_yscale('linear') draw() show() The grid on the xaxis disap