Greg Ewing wrote: > You can do that by declaring fast_gcd in a .pxd file, e.g. > > # arith.pxd > cdef int fast_gcd(int, int) > > # arith.pyx > cdef int fast_gcd(int a, int b): > ... Is that black magic or just a naming convention? Stefan