| 912 | return self |
| 913 | |
| 914 | class Whatever: |
| 915 | def __init__(self, start, finish): |
| 916 | self.start = start |
| 917 | self.finish = finish |
| 918 | |
| 919 | def __iter__(self): |
| 920 | return Iterator(self.start, self.finish) |
| 921 | |
| 922 | f.writelines(Whatever(6, 6+2000)) |
| 923 | f.close() |
no outgoing calls
searching dependent graphs…