Thanks for the patches.
I just committed the getitem patch to the trunk with slight modifications.
As I think this is not a serious bug, I didn't push it to the
maintenance branch.
I'll review the doc patch and commit it later this week.

On the other hand, I don't think it is a good idea to have the
GridSpec iterable.

While the code below could be handy,

 outer_grid = GridSpec(4, 4)
 for cell in outer_grid:
    ...

It could be confusing as the code below would not work.

for cell in outer_grid[:]:
   ...

In other words,

iter(outer_grid) != iter(outer_grid[:]).

outer_grid[:] is not iterable actually.
So my current inclination is to force the GridSpec also not iterable.
How others think?

Regards,

-JJ

------------------------------------------------------------------------------
Learn how Oracle Real Application Clusters (RAC) One Node allows customers
to consolidate database storage, standardize their database environment, and, 
should the need arise, upgrade to a full multi-node Oracle RAC database 
without downtime or disruption
http://p.sf.net/sfu/oracle-sfdevnl
_______________________________________________
Matplotlib-devel mailing list
Matplotlib-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-devel

Reply via email to