[matplotlib-devel] event bug in polar axes

2010-11-08 Thread Benjamin Root
I have come across an odd bug in PolarAxes event handling. If one creates a polar axes, then attempts to do a zoom action (is this even allowed?), and then attempts to do a pan (is this even allowed?), errors get thrown. Digging deeper, I noticed that the error being thrown is from "drag_zoom", wh

Re: [matplotlib-devel] event bug in polar axes

2010-11-08 Thread Michael Droettboom
On 11/08/2010 10:34 AM, Benjamin Root wrote: I have come across an odd bug in PolarAxes event handling. If one creates a polar axes, then attempts to do a zoom action (is this even allowed?), and then attempts to do a pan (is this even allowed?), errors get thrown. Rubber-band zooming is not a

Re: [matplotlib-devel] event bug in polar axes

2010-11-08 Thread Michael Droettboom
Should be fixed in r8778, r8779. Mike On 11/08/2010 11:13 AM, Michael Droettboom wrote: On 11/08/2010 10:34 AM, Benjamin Root wrote: I have come across an odd bug in PolarAxes event handling. If one creates a polar axes, then attempts to do a zoom action (is this even allowed?), and then att

Re: [matplotlib-devel] Matplotlib 1.0.1 release schedule (again)

2010-11-08 Thread Sandro Tosi
Hi all, On Sun, Nov 7, 2010 at 09:25, Jouni K. Seppänen wrote: > Jouni K. Seppänen writes: > >> Benjamin Root writes: >> As an Ubuntu user, I would really a mechanism for excluding examples requiring downloaded data from being built >>> >>> How far did we get on that?  I could have sw

Re: [matplotlib-devel] Matplotlib 1.0.1 release schedule (again)

2010-11-08 Thread John Hunter
On Mon, Nov 8, 2010 at 1:29 PM, Sandro Tosi wrote: > What's the plan about 1.0.1? is it going to be release soon? will it > include the sample_data dir in the released tarball, so that we can > set examples.download = False, and examples.directory = > "/sample_data" inside the tarball? that w

[matplotlib-devel] plot directive, thank you and a question

2010-11-08 Thread Matthew Brett
Hi, First - thank you - it makes my heart very glad to be able to do this: .. plot:: :include-source: import matplotlib.pyplot as plt plt.plot(range(10)) plt.show() Here's my question. This is already a huge step forward for me, but the full monty would be to be able to do: .

Re: [matplotlib-devel] event bug in polar axes

2010-11-08 Thread Benjamin Root
On Monday, November 8, 2010, Michael Droettboom wrote: > > > > > > > Should be fixed in r8778, r8779. > > Mike > > On 11/08/2010 11:13 AM, Michael Droettboom wrote: > > > > On 11/08/2010 10:34 AM, Benjamin Root wrote: > I have come across an odd bug in PolarAxes event >

Re: [matplotlib-devel] plot directive, thank you and a question

2010-11-08 Thread John Hunter
On Mon, Nov 8, 2010 at 6:55 PM, Matthew Brett wrote: > First - thank you - it makes my heart very glad to be able to do this: > > .. plot:: >    :include-source: > >    import matplotlib.pyplot as plt >    plt.plot(range(10)) >    plt.show() > > Here's my question.   This is already a huge step fo