It might be allowed but I do not see the point of using it. The most
reasonable way is

cdef int a   # or possibly, unsigned int, size_t, etc
for a in range(100):
    ...

And this has to be thought as the C for loop

int a;
for(a = 0; a < 100; a++) ...

And as Volker said, it is always a good idea to look at the generated
C code in HTML form.

-- 
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To post to this group, send email to sage-devel@googlegroups.com.
Visit this group at https://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.

Reply via email to