Cleared file executable bit that was set earlier by a mistake
[cython.git] / tests / compile / docstrings.pyx
1 "Welcome to the parrot module. It is currently resting."
2
3 def zap(polly, volts):
4     "Wake up polly."
5
6 class Parrot:
7     "Standard Norwegian Blue."
8     
9     def admire_plumage(self):
10         "Lovely, ain't it?"
11
12 cdef class SuperParrot:
13     "Special high-performance model."
14