(self, key: object)
| 561 | # below and use the collections.abc fallback, but that would be slow. |
| 562 | |
| 563 | def __contains__(self, key: object) -> bool: |
| 564 | return ( |
| 565 | key in self._markers |
| 566 | or self.parent is not None |
| 567 | and key in self.parent.keywords |
| 568 | ) |
| 569 | |
| 570 | def update( # type: ignore[override] |
| 571 | self, |
nothing calls this directly
no outgoing calls
no test coverage detected