<div dir="ltr"><div class="gmail_quote"><div dir="ltr"><div class="gmail_extra"><span class=""><div class="gmail_quote">On Wed, Sep 30, 2015 at 11:28 AM, Neil Girdhar <span dir="ltr"><<a href="mailto:mistersheik@gmail.com" target="_blank">mistersheik@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div><font><font>I found myself writing:</font></font></div><div><font><font><font><font><br></font></font></font></font></div><div><font><font><font><font><div>Â Â Â Â Â Â Â Â for vertex, height in zip(</div><div>Â Â Â Â Â Â Â Â Â Â Â Â self.cache.height_to_vertex[height_slice],</div><div>Â Â Â Â Â Â Â Â Â Â Â Â range(height_slice.start, height_slice.stop)):</div><div><br></div><div>I would have preferred:</div><div><br></div><div><div>Â Â Â Â Â Â Â Â for height, vertex in enumerate(</div><div>Â Â Â Â Â Â Â Â Â Â Â Â self.cache.height_to_vertex)[height_slice]:</div></div></font></font></font></font></div></blockquote></div><br></span>This does not seem to be an big improvement over</div><div class="gmail_extra"><br></div><div class="gmail_extra"><span class=""><div>Â Â Â Â Â Â Â Â for height, vertex in enumerate(</div></span><div>Â Â Â Â Â Â Â Â Â Â Â Â self.cache.height_to_vertex[height_slice], height_slice.start):</div></div><div class="gmail_extra"><br></div><div class="gmail_extra"><br></div></div>
</div><br></div>