Cython has moved to github.
cython
view tests/compile/ia_cdefblock.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 | |
| children | 5905f7b15cb2 |
line source
1 cdef:
3 struct PrivFoo:
4 int i
6 int priv_i
8 void priv_f():
9 global priv_i
10 priv_i = 42
12 cdef public:
14 struct PubFoo:
15 int i
17 int pub_v
19 void pub_f():
20 pass
22 class PubBlarg [object PubBlargObj, type PubBlargType]:
23 pass
25 cdef api:
27 void api_f():
28 pass
30 cdef public api:
32 void pub_api_f():
33 pass
