(self)
| 3044 | # Python dict protocol |
| 3045 | |
| 3046 | def values(self): |
| 3047 | if self._currentIdx is not None: |
| 3048 | yield self._componentValues[self._currentIdx] |
| 3049 | |
| 3050 | def keys(self): |
| 3051 | if self._currentIdx is not None: |
no outgoing calls
no test coverage detected