Re: [Matplotlib-users] segfault from svn

2006-09-19 Thread John Hunter
> "Ryan" == Ryan Krauss <[EMAIL PROTECTED]> writes: Ryan> I seem to be o.k. now. I tried setup.py clean. That Ryan> doesn't remove the build dir? No, it only rebuilds what is needed, but if the recursive dependency analysis is broken, you can get into an inconsistent state. This ha

Re: [Matplotlib-users] segfault from svn

2006-09-19 Thread John Hunter
> "Ryan" == Ryan Krauss <[EMAIL PROTECTED]> writes: Ryan> I just upgraded matplotlib, numpy, scipy, and ipython to Ryan> currect svn. I am getting a segfault with pylab: Try rm -rf the build subdir and recompile -- I just updated the SWIG srcs which may be causing your problem. JDH

Re: [Matplotlib-users] segfault from svn

2006-09-19 Thread Ryan Krauss
If I change numerix to numarray, this goes away. Is anyone else out there successfully running svn mpl with: In [2]: numpy.__version__ Out[2]: '1.0rc1.dev3190' In [3]: matplotlib.__version__ Out[3]: '0.87.5' Thanks, Ryan On 9/19/06, Ryan Krauss <[EMAIL PROTECTED]> wrote: > I just upgraded mat

[Matplotlib-users] segfault from svn

2006-09-19 Thread Ryan Krauss
I just upgraded matplotlib, numpy, scipy, and ipython to currect svn. I am getting a segfault with pylab: Python 2.4.2 (#2, Sep 30 2005, 21:19:01) [GCC 4.0.2 20050808 (prerelease) (Ubuntu 4.0.1-4ubuntu8)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import p

Re: [Matplotlib-users] waiting on a point

2006-09-19 Thread Ken McIvor
On 09/19/06 15:22, John Hunter wrote: >>"Kenny" == Kenny Ortmann <[EMAIL PROTECTED]> writes: > > Kenny> I'm writing a program with a graph. You have to select > Kenny> segments of the graph, which requires 2 points. > > Kenny> working with widgets is new to me and im used to working >

Re: [Matplotlib-users] waiting on a point

2006-09-19 Thread John Hunter
> "Kenny" == Kenny Ortmann <[EMAIL PROTECTED]> writes: Kenny> I'm writing a program with a graph. You have to select Kenny> segments of the graph, which requires 2 points. Kenny> working with widgets is new to me and im used to working Kenny> with while loops and what not. I

[Matplotlib-users] waiting on a point

2006-09-19 Thread Kenny Ortmann
I'm writing a program with a graph. You have to select segments of the graph, which requires 2 points. is there a way to write this with a while loop, where while(morepoints == "yes") { while(waiting on point 1) { check if point 1 is a good point if point 1 is good

[Matplotlib-users] datestr2num problem

2006-09-19 Thread Lionel Roubeyrie
hi all, I have a problem with datestr2num. All my dates are sorted in %d/%m/%Y format, but datestr2num seems to take days for months before the 12th day: 100>datas['Dates'] Sortie[100]: recarray([05/01/2006, 06/01/2006, 07/01/2006, 08/01/2006, 09/01/2006, 10/01/2006, 11/01/2006, 12/01/2006,

[Matplotlib-users] ipython -pylab trick

2006-09-19 Thread John Hunter
I had a problem yesterday running a script in interactive mode in ipython -pylab using the gtk backend. In the script there was some expensive computation, and I wanted to break out of it by hitting CTRL-C. Because of the nastiness of signal handling across threads, this isn't possible, though F