Keys of the pseudo dictionary, uses a list not set so order information can be maintained like python dictionaries.
(self)
| 446 | return set() |
| 447 | |
| 448 | def keys(self) -> List[Any]: |
| 449 | """ |
| 450 | Keys of the pseudo dictionary, uses a list not set so order information can be maintained like python |
| 451 | dictionaries. |
| 452 | """ |
| 453 | return list(self) |
| 454 | |
| 455 | def values(self) -> List[Any]: |
| 456 | return [self[k] for k in self] |
no outgoing calls