Re: [matplotlib-devel] Adding 'grey' to all the 'grays' in mpl.colors

2007-02-13 Thread Martin Spacek
> # add british equivs > for k, v in cnames.items(): >if k.find('gray')>=0: >k = k.replace('gray', 'grey') >cnames[k] = v Neat, that's a much better idea. > Note that in pylab, you can get some extra information by doing > help(colors) Thanks. I really like all the new

Re: [matplotlib-devel] Adding 'grey' to all the 'grays' in mpl.colors

2007-02-13 Thread Martin Spacek
John Hunter wrote: > Thanks for the suggestion -- I did this automagically with # add british equivs for k, v in cnames.items(): if k.find('gray')>=0: k = k.replace('gray', 'grey') cnames[k] = v Just noticed that 'lightgrey' is still in the cnames dict, which means that 'lig

Re: [matplotlib-devel] Do you use python setup.py build_ext --inplace ?

2007-02-13 Thread John Hunter
On 2/12/07, Andrew Straw <[EMAIL PROTECTED]> wrote: > Great, thanks for checking that in. > > It looks like images/*.png didn't make it in. OK, I committed these. I'm not sure why they didn't go in the first time since they were in my mpl-data/images dir when I added it. Give it a test drive. -

Re: [matplotlib-devel] Do you use python setup.py build_ext --inplace ?

2007-02-13 Thread Nicolas Grilly
On 2/13/07, John Hunter <[EMAIL PROTECTED]> wrote: > On 2/12/07, Andrew Straw <[EMAIL PROTECTED]> wrote: > > Great, thanks for checking that in. > > > > It looks like images/*.png didn't make it in. > > OK, I committed these. I'm not sure why they didn't go in the first > time since they were in m

[matplotlib-devel] Year of last entries in CHANGELOG is 2007

2007-02-13 Thread Nicolas Grilly
I suppose the year of the last entries of CHANGELOG is 2007, not 2006. Regards, Nicolas Grilly - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology

Re: [matplotlib-devel] Patch for enhancement of PDF backend

2007-02-13 Thread John Hunter
On 2/13/07, Nicolas Grilly <[EMAIL PROTECTED]> wrote: > Here is a patch I promised some time ago, to improve the PDF backend. Jouni, I'm going to leave this up to you, but Nicolas this looks very nice. Thanks! JDH - Using