On Wed, Oct 5, 2016 at 12:41 PM, meInvent bbird <jobmatt...@gmail.com> wrote:
> so far i do not know which bug i search for
>
> i would like to change style of for loop
>
> form ascending to descending style
>
> for(int i=0; i<3; ++i)
>
> to
>
> for(int i=3; i>=0; --i)
>
> or
>
> most crazy to change if else if else into mealy machine

Are you aware that those loops are significantly different?

ChrisA
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to