Return the items of the data attribute. Returns: The items of data.
(self)
| 314 | return [] |
| 315 | |
| 316 | def items(self) -> ItemsView: |
| 317 | """Return the items of the data attribute. |
| 318 | |
| 319 | Returns: |
| 320 | The items of data. |
| 321 | """ |
| 322 | return self.data.items() |
| 323 | |
| 324 | def values(self) -> Any: |
| 325 | """Return the values of the data attribute. |
no outgoing calls