( # type: ignore[override]
self, key: _Key, default: Optional[Union[_Value, _T]] = None
)
| 176 | self.update(kwargs) |
| 177 | |
| 178 | def get( # type: ignore[override] |
| 179 | self, key: _Key, default: Optional[Union[_Value, _T]] = None |
| 180 | ) -> Union[_Value, _T, None]: |
| 181 | try: |
| 182 | return self[key] |
| 183 | except KeyError: |
| 184 | return default |
| 185 | |
| 186 | def __eq__(self, other: Any) -> bool: |
| 187 | """Comparison to another SON is order-sensitive while comparison to a |
no outgoing calls
no test coverage detected