(self, fname)
| 36 | |
| 37 | class CorpusReader: |
| 38 | def __init__(self, fname): |
| 39 | self.fname = fname |
| 40 | def __iter__(self): |
| 41 | for line in file(self.fname): |
| 42 | line = line.strip().split() |
nothing calls this directly
no outgoing calls
no test coverage detected