Re: [matplotlib-devel] Arc requires explicitly setting fill=False?

2009-05-24 Thread Eric Firing
John Hunter wrote: > On Sun, May 24, 2009 at 7:20 PM, Eric Firing wrote: >> Tony S Yu wrote: >>> Currently, Arc in matplotlib.patches requires that it be called with >>> kwarg ``fill=False``. Was this behavior intentional? The code suggests >>> that a default value was left out of the kwarg lookup

Re: [matplotlib-devel] Arc requires explicitly setting fill=False?

2009-05-24 Thread John Hunter
On Sun, May 24, 2009 at 7:20 PM, Eric Firing wrote: > Tony S Yu wrote: >> Currently, Arc in matplotlib.patches requires that it be called with >> kwarg ``fill=False``. Was this behavior intentional? The code suggests >> that a default value was left out of the kwarg lookup. >> >> I've attached a s

Re: [matplotlib-devel] Arc requires explicitly setting fill=False?

2009-05-24 Thread Eric Firing
Tony S Yu wrote: > Currently, Arc in matplotlib.patches requires that it be called with > kwarg ``fill=False``. Was this behavior intentional? The code suggests > that a default value was left out of the kwarg lookup. > > I've attached a simple patch to fix this (it still fails when fill set

[matplotlib-devel] Arc requires explicitly setting fill=False?

2009-05-24 Thread Tony S Yu
Currently, Arc in matplotlib.patches requires that it be called with kwarg ``fill=False``. Was this behavior intentional? The code suggests that a default value was left out of the kwarg lookup. I've attached a simple patch to fix this (it still fails when fill set to True). Cheers, -Tony