Re: [Matplotlib-users] Bug report

2006-06-26 Thread John Hunter
> "Tony" == Tony Mannucci <[EMAIL PROTECTED]> writes: Tony> Let me know if this is not the appropriate way to report Tony> bugs. Here is the example code: This is a good way to report them, but none of these are bugs :-) Tony> import numpy as N import matplotlib matplotlib.use("

[Matplotlib-users] Bug report

2006-06-26 Thread Tony Mannucci
Let me know if this is not the appropriate way to report bugs. Here is the example code: import numpy as N import matplotlib matplotlib.use("TkAgg") import pylab as PLT x = N.array([1.,2.,3.,4.,5.]) y = N.array([2.2,3.3,4.4,5.5,6.6]) PLT.figure(1) PLT.clf() PLT.hold(False) PLT.plot(x,y,'+',color