Re: [matplotlib-devel] r5976 breaks contour and contourf

2008-08-06 Thread Michael Droettboom
Thanks. This should be fixed in r5979. It seems to work fine over the backend_driver tests now. Cheers, Mike Eric Firing wrote: > Mike, > > Try contour_demo and contourf_demo--I think you will find that r5976 > has whacked them both. I don't know how. I have not looked closely. > > Eric --

[matplotlib-devel] mpl tutorial: Controlling axes properties

2008-08-06 Thread Manuel Metz
Hi, I think the section Controlling axes properties of http://matplotlib.sourceforge.net/tutorial.html needs to be updated, since frame = gca(gca(), 'frame') setp(frame, 'linewidth', 2) doesn't work any more with mpl 0.98.x ... Manuel

Re: [matplotlib-devel] mpl tutorial: Controlling axes properties

2008-08-06 Thread John Hunter
On Wed, Aug 6, 2008 at 8:51 AM, Manuel Metz <[EMAIL PROTECTED]> wrote: > I think the section Controlling axes properties of > http://matplotlib.sourceforge.net/tutorial.html needs to be updated, since > > frame = gca(gca(), 'frame') > setp(frame, 'linewidth', 2) > > doesn't work any more wit