Re: [matplotlib-devel] semilogx and semilogy don't reset linear scale

2009-08-30 Thread Eric Firing
John Hunter wrote: > On Sun, Aug 30, 2009 at 12:57 PM, John Hunter wrote: > >> OK, I figured this out. The new failure was on formatter4, not >> formatter5. I didn't see that when I posted earlier. It turns out >> when we were working at scipy and I wrote that script to move new >> saved-result

Re: [matplotlib-devel] semilogx and semilogy don't reset linear scale

2009-08-30 Thread John Hunter
On Sun, Aug 30, 2009 at 12:57 PM, John Hunter wrote: > OK, I figured this out.  The new failure was on formatter4, not > formatter5.  I didn't see that when I posted earlier.  It turns out > when we were working at scipy and I wrote that script to move new > saved-results into baseline, I inadvert

Re: [matplotlib-devel] semilogx and semilogy don't reset linear scale

2009-08-30 Thread John Hunter
On Sun, Aug 30, 2009 at 11:47 AM, John Hunter wrote: > Hey this is strage now the baseline image is wrong (it has one line > and should have two).  Earlier didn't the baseline have two and the > actual have one?  Did someone upload the broken one line version as > the new baseline.  I can fix the

Re: [matplotlib-devel] semilogx and semilogy don't reset linear scale

2009-08-30 Thread John Hunter
On Sun, Aug 30, 2009 at 11:42 AM, John Hunter wrote: > So now I am getting what looks like a font error on the sage buildbot, > even though I wasn't getting one before on this image.  Is this > because the new good was generated on linux with a different font > config, you think?  It would be real

Re: [matplotlib-devel] semilogx and semilogy don't reset linear scale

2009-08-30 Thread John Hunter
On Sun, Aug 30, 2009 at 10:24 AM, Andrew Straw wrote: > No, I hadn't considered that it might be non-deterministic. However, > looking at the absdiff image of test_matplotlib.TestAxes.empty_datetime, > this is a totally different failure than we were seeing with Eric's > patch. I should probably s

Re: [matplotlib-devel] semilogx and semilogy don't reset linear scale

2009-08-30 Thread Andrew Straw
Jouni K. Seppänen wrote: > Eric Firing writes: > > >> Andrew Straw wrote: >> >>> Eric Firing wrote: >>> > Specifically, it looks like the farthest left xticklabel is no longer > getting displayed. Personally, I think it looks better this way, but now > that the test suit

Re: [matplotlib-devel] semilogx and semilogy don't reset linear scale

2009-08-30 Thread Jouni K . Seppänen
Eric Firing writes: > Andrew Straw wrote: >> Eric Firing wrote: Specifically, it looks like the farthest left xticklabel is no longer getting displayed. Personally, I think it looks better this way, but now that the test suite is coming online, we will finally start noticing l

Re: [matplotlib-devel] semilogx and semilogy don't reset linear scale

2009-08-30 Thread Eric Firing
Andrew Straw wrote: > Eric Firing wrote: >>> Specifically, it looks like the farthest left xticklabel is no longer >>> getting displayed. Personally, I think it looks better this way, but now >>> that the test suite is coming online, we will finally start noticing >>> little things like this. >> I

Re: [matplotlib-devel] semilogx and semilogy don't reset linear scale

2009-08-30 Thread Andrew Straw
Eric Firing wrote: >> Specifically, it looks like the farthest left xticklabel is no longer >> getting displayed. Personally, I think it looks better this way, but now >> that the test suite is coming online, we will finally start noticing >> little things like this. > > I agree that the newer ver

Re: [matplotlib-devel] semilogx and semilogy don't reset linear scale

2009-08-29 Thread Eric Firing
Andrew Straw wrote: > Eric Firing wrote: >> Tony S Yu wrote: >> >>> Did this email ever appear on list? I didn't see it after sending my >>> original post, but I found it on the Sourceforge mail archives. I'm >>> trying a different email address as an experiment. >>> >> Tony, >> >> It d

Re: [matplotlib-devel] semilogx and semilogy don't reset linear scale

2009-08-29 Thread Andrew Straw
Eric Firing wrote: > Tony S Yu wrote: > >> Did this email ever appear on list? I didn't see it after sending my >> original post, but I found it on the Sourceforge mail archives. I'm >> trying a different email address as an experiment. >> > > Tony, > > It did appear the first time, but

Re: [matplotlib-devel] semilogx and semilogy don't reset linear scale

2009-08-29 Thread Eric Firing
Tony S Yu wrote: > Did this email ever appear on list? I didn't see it after sending my > original post, but I found it on the Sourceforge mail archives. I'm > trying a different email address as an experiment. Tony, It did appear the first time, but I guess everyone who saw it figured someo

Re: [matplotlib-devel] semilogx and semilogy don't reset linear scale

2009-08-29 Thread Tony S Yu
Did this email ever appear on list? I didn't see it after sending my original post, but I found it on the Sourceforge mail archives. I'm trying a different email address as an experiment. In any case, any comments on the patch? -Tony On Aug 24, 2009, at 5:31 PM, Tony Yu wrote: > I noticed t

[matplotlib-devel] semilogx and semilogy don't reset linear scale

2009-08-24 Thread Tony Yu
I noticed that semilogx and semilogy don't check if the linear axis (y- axis for semilogx; x-axis for semilogy) is actually linear. Thus, if I call semilogx and then call semilogy *on the same plot*, I end up with a loglog plot. Below is a simple patch. I'm not sure how useful this fix is sin