fix #675: make 'by' a non-keyword also in .pyx files
[cython.git] / tests / compile / docstrings.pyx
1 # mode: compile
2
3 "Welcome to the parrot module. It is currently resting."
4
5 def zap(polly, volts):
6     "Wake up polly."
7
8 class Parrot:
9     "Standard Norwegian Blue."
10
11     def admire_plumage(self):
12         "Lovely, ain't it?"
13
14 cdef class SuperParrot:
15     "Special high-performance model."
16