how to read linux kernel source with pycparser (Reposting On Python-List Prohibited)

Chris Angelico rosuav at gmail.com
Tue Oct 4 21:48:22 EDT 2016


On Wed, Oct 5, 2016 at 12:41 PM, meInvent bbird <jobmattcon at 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



More information about the Python-list mailing list