setdashes bug

I added this to svn. When I got into the code, I saw there is already
a way to do this:

  line.set_dashes((None, None))

JDH

···

On Wed, 20 Dec 2006, John Hunter apparently wrote:

    >> Is this expected? I wouldn't expect it.

    > It is pretty standard. See e.g. the PostScript Language
    > Reference Manual. And, how else to set a solid line with
    > set_dashes?

I added this to svn.

Thanks!

When I got into the code, I saw there is already a way to
do this:
  line.set_dashes((None, None))

Yes, in 0.87.7, this works. Thanks!
(Note that it works only for a tuple,
not for a list.)

Cheers,
Alan

PS Why you might want to do this:
across figures I want to set a consistent
set of line styles, globally specifying a list of
dash styles, one for every line.

···

On Wed, 20 Dec 2006, John Hunter apparently wrote: