Cython has moved to github.

cython

view tests/compile/withgil.pyx @ 724:4e4808271bdf

Bump version number.
author Robert Bradshaw <robertwb@math.washington.edu>
date Thu Jun 12 16:53:51 2008 -0700 (3 years ago)
parents ad44d3ffbb07
children
line source
1 cdef void f() with gil:
2 x = 42
4 cdef int g(void* x) with gil:
5 pass
7 f()
8 g("test")