2b260281227e591ba1bd54e66d75aa061ea404ad
[cython.git] / Doc / s5 / ep2008 / worker.py
1
2 class HardWorker(object):
3     u"Almost Sisyphus"
4     def __init__(self, task):
5         self.task = task
6
7     def work_hard(self):
8         for i in range(100):
9             self.task()