Re: [matplotlib-devel] Improved histogram w/multiple types

2008-05-15 Thread Johann Cohen-Tanugi
hello, is there an example in the distribution that shows these new features? How about the idea to allow for an option to get cumulative histograms, that sounded a very nice idea thanks, Johann Manuel Metz wrote: > Eric Firing wrote: > >> John Hunter wrote: >> >>> On Wed, Apr 2, 200

[matplotlib-devel] Windows testing favor (was: tkinter segv under opensuse 10.3)

2008-05-15 Thread Michael Droettboom
I recently committed a fix (courtesy of Malte Marquarding) for segfaults in the Tk backend. It seems it was converting a string of digits to a "signed long" and then casting to a pointer. Unfortunately, it really needs to be an "unsigned long" or overflow may occur. Since the C standard libr

Re: [matplotlib-devel] Windows testing favor (was: tkinter segv under opensuse 10.3)

2008-05-15 Thread John Hunter
On Thu, May 15, 2008 at 8:08 AM, Michael Droettboom <[EMAIL PROTECTED]> wrote: > I recently committed a fix (courtesy of Malte Marquarding) for segfaults > in the Tk backend. It seems it was converting a string of digits to a > "signed long" and then casting to a pointer. Unfortunately, it really

Re: [matplotlib-devel] Windows testing favor (was: tkinter segv under opensuse 10.3)

2008-05-15 Thread John Hunter
On Thu, May 15, 2008 at 8:08 AM, Michael Droettboom <[EMAIL PROTECTED]> wrote: > I recently committed a fix (courtesy of Malte Marquarding) for segfaults > in the Tk backend. It seems it was converting a string of digits to a > "signed long" and then casting to a pointer. Unfortunately, it really

Re: [matplotlib-devel] Windows testing favor (was: tkinter segv under opensuse 10.3)

2008-05-15 Thread Michael Droettboom
Oh joy! Maybe we should try (as Eric suggested) sscanf instead. Cheers, Mike John Hunter wrote: > On Thu, May 15, 2008 at 8:08 AM, Michael Droettboom <[EMAIL PROTECTED]> wrote: > >> I recently committed a fix (courtesy of Malte Marquarding) for segfaults >> in the Tk backend. It seems it was

Re: [matplotlib-devel] Windows testing favor (was: tkinter segv under opensuse 10.3)

2008-05-15 Thread John Hunter
On Thu, May 15, 2008 at 2:09 PM, Michael Droettboom <[EMAIL PROTECTED]> wrote: > Oh joy! Maybe we should try (as Eric suggested) sscanf instead. OK, I just committed a change using scanf with type %lu. tkagg svn trunk users should test on any platform they have access to. I can try OS X tonight

Re: [matplotlib-devel] Windows testing favor (was: tkinter segv under opensuse 10.3)

2008-05-15 Thread Michael Droettboom
John Hunter wrote: > On Thu, May 15, 2008 at 2:09 PM, Michael Droettboom <[EMAIL PROTECTED]> wrote: > >> Oh joy! Maybe we should try (as Eric suggested) sscanf instead. >> > > OK, I just committed a change using scanf with type %lu. tkagg svn > trunk users should test on any platform they

[matplotlib-devel] broken module, examples

2008-05-15 Thread Eric Firing
Four examples fail because they depend on matplotlib.agg, which cannot be imported: In [1]:import matplotlib.agg --- ImportError Traceback (most recent call last) /home/efiring/programs/py/mpl/m