Re: [matplotlib-devel] Colormap that prints nicely in black and white

2010-08-11 Thread Friedrich Romstedt
2010/8/11 Eric Firing : > Why make a whole new class instead of switching a behavior in an existing > class? To my understanding, making object having "behaviours" is usually not a good idea - I like different classes much more. I believe this is just a matter of taste, both solutions will work.

Re: [matplotlib-devel] Colormap that prints nicely in black and white

2010-08-11 Thread Benjamin Root
On Wed, Aug 11, 2010 at 11:47 AM, Friedrich Romstedt < friedrichromst...@gmail.com> wrote: > 2010/8/11 Eric Firing : > > Why make a whole new class instead of switching a behavior in an existing > > class? > > To my understanding, making object having "behaviours" is usually not > a good idea - I

[matplotlib-devel] Fwd: Re: [Matplotlib-users] show() blocks script execution for TkAgg from ipython -pylab

2010-08-11 Thread Eric Firing
John et al., Is this a reasonable time to put out 1.0.1? There have been quite a few bugfixes and other cleanups since 1.0. Most likely the biggest problem with 1.0 is my error in the tk show(), which you tripped over, and which prompted the thread below. Eric Original Message

Re: [matplotlib-devel] Fwd: Re: [Matplotlib-users] show() blocks script execution for TkAgg from ipython -pylab

2010-08-11 Thread Ryan Krauss
FWIW, I responded to a thread on the IPython list where someone else was asking why show() was blocking execution on Windows 7. I think he was really experiencing the tk show() problem from mpl. So, I think this is causing issues with other users (in my opinion). Ryan On Wed, Aug 11, 2010 at 12

Re: [matplotlib-devel] [Matplotlib-users] show() blocks script execution for TkAgg from ipython -pylab

2010-08-11 Thread John Hunter
On Wed, Aug 11, 2010 at 12:35 PM, Eric Firing wrote: > John et al., > > Is this a reasonable time to put out 1.0.1?  There have been quite a few > bugfixes and other cleanups since 1.0.  Most likely the biggest problem with > 1.0 is my error in the tk show(), which you tripped over, and which prom

Re: [matplotlib-devel] Colormap that prints nicely in black and white

2010-08-11 Thread Friedrich Romstedt
http://www.youtube.com/watch?v=aa5eWT-J3v0 -- This SF.net email is sponsored by Make an app they can't live without Enter the BlackBerry Developer Challenge http://p.sf.net/sfu/RIM-dev2dev __

Re: [matplotlib-devel] [Matplotlib-users] show() blocks script execution for TkAgg from ipython -pylab

2010-08-11 Thread Benjamin Root
On Wed, Aug 11, 2010 at 1:27 PM, John Hunter wrote: > On Wed, Aug 11, 2010 at 12:35 PM, Eric Firing wrote: > > John et al., > > > > Is this a reasonable time to put out 1.0.1? There have been quite a few > > bugfixes and other cleanups since 1.0. Most likely the biggest problem > with > > 1.0

Re: [matplotlib-devel] Colormap that prints nicely in black and white

2010-08-11 Thread Friedrich Romstedt
Sorry, forgot source code (you cannot run it, though). Friedrich test.py Description: Binary data -- This SF.net email is sponsored by Make an app they can't live without Enter the BlackBerry Developer Challenge http:/

Re: [matplotlib-devel] [Matplotlib-users] show() blocks script execution for TkAgg from ipython -pylab

2010-08-11 Thread John Hunter
On Wed, Aug 11, 2010 at 1:32 PM, Benjamin Root wrote: > Couldn't we just do what Google does and put a "Beta" label on everything? > > "Matplotlib Beta" > > Sounds almost like a planet or something... That used to be my attitude. Turns out there are a lot of legitimate users who cannot (due to c

[matplotlib-devel] purpose of 'stepfilled' in hist()?

2010-08-11 Thread Benjamin Root
I am tracing down a bug in hist() and I am trying to figure out what is it about the 'stepfilled' mode that is different from the regular 'bar' mode. Currently, the hist() code has a separate if branch for dealing with 'step' and 'stepfilled', and that branch has a bunch of bugs. The best that I c

Re: [matplotlib-devel] purpose of 'stepfilled' in hist()?

2010-08-11 Thread Benjamin Root
On Wed, Aug 11, 2010 at 3:11 PM, Benjamin Root wrote: > I am tracing down a bug in hist() and I am trying to figure out what is it > about the 'stepfilled' mode that is different from the regular 'bar' mode. > Currently, the hist() code has a separate if branch for dealing with 'step' > and 'step