deepdiff icon indicating copy to clipboard operation
deepdiff copied to clipboard

DeepDiff: Deep Difference and search of any Python object/data. DeepHash: Hash of any object based on its contents. Delta: Use deltas to reconstruct objects by adding deltas together.

Results 126 deepdiff issues
Sort by recently updated
recently updated
newest added

the output of a diff depending on the view look like the following {'values_changed': []} {'values_changed': {'root.status': {'new_value': 'DOWN', 'old_value': 'UP'}}} it would be great if it was possible to...

When setting ignore_string_case=True, all the keys in the deepDiff results become lowercase. This is an issue if using the key names to display to the user and you want the...

Please checkout the [F.A.Q](https://zepworks.com/deepdiff/current/faq.html) page before creating a bug ticket to make sure it is not already addressed. **Describe the bug** In the nested dictionaries, the include_obj_callback parameter doesn't work...

**Is your feature request related to a problem? Please describe.** I would like to have more flexible option to be able to exclude particular matches. **Describe the solution you'd like**...

**Describe the bug** If two instances are used in a comparison, where: - one is a subclass of the other - Mangled attribute is used in `__slots__` - Both classes...

**Describe the bug** When using `group_by` using a key which is nullable, it cannot do group_by on None, because of this line in `diff.py` ```python if self.ignore_string_case: clean_key = clean_key.lower()...