(d0: Mapping[_K, _V], d1: Mapping[_K, _V])
| 180 | |
| 181 | @staticmethod |
| 182 | def __dict_diff(d0: Mapping[_K, _V], d1: Mapping[_K, _V]) -> Dict[_K, _V]: |
| 183 | return {k: v for k, v in d0.items() if v != d1.get(k)} |
| 184 | |
| 185 | def _diff_reg(self, other: State) -> Dict[str, int]: |
| 186 | return State.__dict_diff(self.reg, other.reg) |
no test coverage detected