log
graph
tags
changeset
browse
file
diff
annotate
file log
raw
Cython has moved to
github
.
cython
view tests/compile/altet1.pyx.BROKEN @ 724:4e4808271bdf
find changesets by author, revision, files, or words in the commit message
Bump version number.
author
Robert Bradshaw <robertwb@math.washington.edu>
date
Thu Jun 12 16:53:51 2008 -0700 (3 years ago)
parents
children
line source
1
__doc__ = """
2
>>> flub(25)
3
25
4
>>> g()
5
0
6
"""
7
8
cdef extern from "altet1.h":
9
ctypedef int blarg
10
11
cdef blarg globvar
12
13
def flub(blarg bobble):
14
print bobble
15
16
globvar = 0
17
18
def g():
19
return globvar