Re: [Matplotlib-users] Crash when trying to show a semilog or log-log plot

2009-02-23 Thread Craig Finch
ng them. Thanks for your help. Craig - Original Message From: Michael Droettboom To: Craig Finch Cc: matplotlib-users@lists.sourceforge.net Sent: Monday, February 23, 2009 9:49:06 AM Subject: Re: [Matplotlib-users] Crash when trying to show a semilog or log-log plot Strange. I am

Re: [Matplotlib-users] Crash when trying to show a semilog or log-log plot

2009-02-23 Thread Michael Droettboom
raig Finch > Cc: matplotlib-users@lists.sourceforge.net > Sent: Monday, February 23, 2009 9:49:06 AM > Subject: Re: [Matplotlib-users] Crash when trying to show a semilog or > log-log plot > > Strange. I am unable to reproduce this with 0.98.2 (0.98.3 or 0.98.5)... > > It

Re: [Matplotlib-users] Crash when trying to show a semilog or log-log plot

2009-02-23 Thread Michael Droettboom
Strange. I am unable to reproduce this with 0.98.2 (0.98.3 or 0.98.5)... It's happening inside of the math expression renderer, which is used to draw the exponents that happen with semilog and log-log axes. It doesn't, however, appear to be font-related, which is a frequent installation/syste

[Matplotlib-users] Crash when trying to show a semilog or log-log plot

2009-02-22 Thread Craig Finch
I am using matplotlib-0.98.5.2 and getting a strange crash when trying to show() a window with semilog or log-log axes. Here is a simple script that will cause the crash: import pylab from numpy import * x = arange(1., 10., 0.1) y = x**2 pylab.semilogx(x,y) pylab.show() At the end of this mes