Cython has moved to github.

cython

view tests/compile/builtinfuncs.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 5905f7b15cb2
line source
1 cdef int f() except -1:
2 cdef object x, y, z, w
3 cdef int i
4 x = abs(y)
5 delattr(x, 'spam')
6 x = dir(y)
7 x = divmod(y, z)
8 x = getattr(y, 'spam')
9 i = hasattr(y, 'spam')
10 i = hash(y)
11 x = intern(y)
12 i = isinstance(y, z)
13 i = issubclass(y, z)
14 x = iter(y)
15 i = len(x)
16 x = open(y, z)
17 x = pow(y, z, w)
18 x = reload(y)
19 x = repr(y)
20 setattr(x, y, z)
21 #i = typecheck(x, y)
22 #i = issubtype(x, y)
23 x = abs