Cython has moved to github.

cython

view tests/compile/specmethdocstring.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
children 5848ee0eca01
line source
1 cdef class C:
2 def __init__(self):
3 "This is an unusable docstring."
4 property foo:
5 def __get__(self):
6 "So is this."
7 def __set__(self, x):
8 "And here is another one."