Return the iterator of the scp file.
(self)
| 161 | return len(self.data) |
| 162 | |
| 163 | def __iter__(self): |
| 164 | """Return the iterator of the scp file.""" |
| 165 | return iter(self.data) |
| 166 | |
| 167 | def keys(self): |
| 168 | """Return the keys of the scp file.""" |
nothing calls this directly
no outgoing calls
no test coverage detected