Cython has moved to github.

cython

view tests/compile/cnamespec.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 612957ef6e8f
children 9ef9ef371247
line source
1 cdef extern int a "c_a", b "c_b"
3 cdef struct foo "c_foo":
4 int i "c_i"
6 ctypedef enum blarg "c_blarg":
7 x "c_x"
8 y "c_y" = 42
10 cdef double spam "c_spam" (int i, float f):
11 cdef double d "c_d"
12 cdef foo *p
13 global b
14 d = spam(a, f)
15 b = p.i
16 p.i = x
17 p.i = y