Hi,

http://docs.cython.org/src/quickstart/build.html#building-a-cython-module-using-distutils

instead of:

def say_hello_to(name):
    print(Hello %s!" % name)

there should be:

def say_hello_to(name):
    print("Hello %s!" % name)

Ondrej

P.S. I actually tried to compile it. :)
_______________________________________________
Cython-dev mailing list
[email protected]
http://codespeak.net/mailman/listinfo/cython-dev

Reply via email to