Hi, It appears the "++" prefix operator gets silently stripped out. If you have the following, cdef int x x=0 ++x # in the .c file, this is just "__pyx_v_x" print x a "0" is printed. This is with version 0.9.6.4 -- Dan