(self, data_source)
| 154 | |
| 155 | class InfiniteSampler(data.sampler.Sampler): |
| 156 | def __init__(self, data_source): |
| 157 | self.data_source = data_source |
| 158 | |
| 159 | def __iter__(self): |
| 160 | while True: |
nothing calls this directly
no outgoing calls
no test coverage detected