Re: plot debugging problem

2010-05-12 Thread Matteo Landi
> x = range(10) >> plot(x) >> from threading import Timer >> t = Timer(0, show) >> t.start() >> >> y = [2, 8, 3, 9, 4] >> plot(y) >> close() >> >> Best Regards >> Sandy >> >> >> >> >> >> >> &g

Re: plot debugging problem

2010-05-11 Thread Matteo Landi
t Timer > t = Timer(0, show) > t.start() > > y = [2, 8, 3, 9, 4] > plot(y) > close() > > Best Regards > Sandy > > > > > > > > > > > > > >> From: landima...@gmail.com >> Date: Tue, 11 May 2010 19:46:27 +0200 >> Subject: Re:

Re: plot debugging problem

2010-05-11 Thread Matteo Landi
I imagine you have to create a separate thread for it. Just thoughts. On Tue, May 11, 2010 at 6:08 PM, Sandy Sandy wrote: > Hi friends > pls help with debugging problem > the mutter is: > during debugging the  debug processes stacks when fig is created > for example, in code > > import random > >