Cython has moved to github.

cython

view tests/compile/gencall.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
line source
1 def f(x, y):
2 x = y
4 def z(a, b, c):
5 f(x = 42, y = "spam")
6 f(*a)
7 f(**b)
8 f(x = 42, **b)
9 f(a, *b)
10 f(a, x = 42, *b, **c)