Iterate over (key, value) pairs that this object contains. Computed fields are not included.
(self)
| 547 | self[key] = value |
| 548 | |
| 549 | def items(self) -> Iterator[tuple[str, Any]]: |
| 550 | """Iterate over (key, value) pairs that this object contains. |
| 551 | Computed fields are not included. |
| 552 | """ |
| 553 | for key in self: |
| 554 | yield key, self[key] |
| 555 | |
| 556 | def __contains__(self, key) -> bool: |
| 557 | """Determine whether `key` is an attribute on this object.""" |
no outgoing calls
no test coverage detected