a struct
<https://github.com/cython/cython/blob/master/Cython/Includes/posix/time.pxd#L48>
and a double
<https://github.com/cython/cython/blob/master/Cython/Includes/posix/time.pxd#L105>
are defined with the name 'timezone' in posix/time.pxd. Hence

from posix.time cimport timeval, timezone, gettimeofday
cdef timeval tv
cdef timezone tz
gettimeofday(&tv, &tz)

fails with 'timezone' is not a type identifier

It would be nice if there were a test for duplicate names in pxd files.

Thanks for the awesome tool, Joel
_______________________________________________
cython-devel mailing list
cython-devel@python.org
https://mail.python.org/mailman/listinfo/cython-devel

Reply via email to