| 48 | return BasicIterClass(self.n) |
| 49 | |
| 50 | class IteratorProxyClass: |
| 51 | def __init__(self, i): |
| 52 | self.i = i |
| 53 | def __next__(self): |
| 54 | return next(self.i) |
| 55 | def __iter__(self): |
| 56 | return self |
| 57 | |
| 58 | class SequenceClass: |
| 59 | def __init__(self, n): |
no outgoing calls
searching dependent graphs…