|
From: Martin S. <sc...@ms...> - 2007-02-13 14:28:38
|
> # 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 auto-generated kwarg properties that
are showing up in the docstrings now. I just noticed them today as I
upgraded to 0.90.
Martin
|