On 29/10/2013 00:17, Sterling Smith wrote:
> While your example tries to be self contained, which is great!, there is no 
> difference between these two conditions...  
> 
>> if BUG:
>>    ax1 = host_subplot(111, axes_class=Axes)
>> else:
>>    ax1 = host_subplot(111, axes_class=Axes)

Ops, obvious mistake. It should read:

BUG = True
if BUG:
    ax1 = host_subplot(111 , axes_class=Axes)
else:
    ax1 = host_subplot(111)


Cheers,
Daniele


------------------------------------------------------------------------------
Android is increasing in popularity, but the open development platform that
developers love is also attractive to malware creators. Download this white
paper to learn more about secure code signing practices that can help keep
Android apps secure.
http://pubads.g.doubleclick.net/gampad/clk?id=65839951&iu=/4140/ostg.clktrk
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to