Re: [Matplotlib-users] first run works fine but on the second not

2009-12-14 Thread John Hunter
On Mon, Dec 14, 2009 at 12:38 PM, jenya56 wrote: > > I have the following in my PyScripter: > > import matplotlib > matplotlib.interactive(True) > from matplotlib.pylab import * > import pylab > > > if __name__ == '__main__': >   plot([1,2,3]) >   pylab.show() > #__main__ > > > For the first run i

[Matplotlib-users] first run works fine but on the second not

2009-12-14 Thread jenya56
I have the following in my PyScripter: import matplotlib matplotlib.interactive(True) from matplotlib.pylab import * import pylab if __name__ == '__main__': plot([1,2,3]) pylab.show() #__main__ For the first run it works just fine and plots what expected. However, on the second run it j