> 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
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:
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
>
>