Re: [Matplotlib-users] can plot only one time in windows

2007-05-29 Thread Jeff Whitaker
Emmanuel Favre-Nicolin wrote: > Hi, > > I can plot only one time in windows. The second time, the window > appears without the tools and when I click on the windows it become > white and freezes. Here is a code : > > from pylab import * > x=arange(5) > y=x*x > plot(x,y) > show() > plot(x,y) > sho

[Matplotlib-users] can plot only one time in windows

2007-05-29 Thread Emmanuel Favre-Nicolin
Hi, I can plot only one time in windows. The second time, the window appears without the tools and when I click on the windows it become white and freezes. Here is a code : from pylab import * x=arange(5) y=x*x plot(x,y) show() plot(x,y) show() ---