Re: [Pyzo] matplotlib plots but mouse causes crash "Python hasstoppedworking"

2016-12-03 Thread 'blue2studio' via Pyzo
y what the shell prints out when it starts. > > > > Regards, > > Almar > > > > *From: *'blue2studio' via Pyzo > *Sent: *02 December 2016 21:43 > *To: *Pyzo > *Subject: *Re: [Pyzo] matplotlib plots but mouse causes crash "Python > hasstoppe

RE: [Pyzo] matplotlib plots but mouse causes crash "Python hasstoppedworking"

2016-12-03 Thread almar.klein
: [Pyzo] matplotlib plots but mouse causes crash "Python hasstoppedworking" The following works without pyzo from windows>   py tlab2.py import matplotlib.pyplot as plt import numpy as np #plt.ion() x = np.arange(0, 4*np.pi, 0.1) y = [np.sin(i) for i in x] plt.plot(x, y, 'g-',