Return keys and values of file key.
(self)
| 76 | yield self[k] |
| 77 | |
| 78 | def items(self): |
| 79 | """Return keys and values of file key.""" |
| 80 | for k in self.file: |
| 81 | yield k, self[k] |
| 82 | |
| 83 | def __iter__(self): |
| 84 | """Iterate over items in file.""" |
no outgoing calls