Sep Dehpour

Results 208 comments of Sep Dehpour

Hmm, do you have all the dependencies installed? Have you done a `pip install -r requirements-dev.txt` before running the tests @yurivict ?

Hi @atah1991 The problem here is that deepdiff wants to store some string presentation of your paths but also wants to make sure the string representation can be converted to...

@matthewvanhoutte This must be a bug. Also DeepHash doesn't use `__hash__`. I wonder if I should change it to use `__hash__` when present.

Yes if the __hash__ is not deterministic, then the final hash won’t be deterministic either. Sep Dehpour > On Apr 22, 2022, at 1:55 AM, matthewvanhoutte ***@***.***> wrote: > >...

@matthewvanhoutte This is brilliant! Thanks for diving into this. Makes me wonder how the `hashes` dictionary in DeepHash should handle hash collisions. 1. One way we could handle the hash...

@matthewvanhoutte Custom objects come with the `__hash__` function but that doesn't mean the hash here provides any value for DeepHash: ``` >>> class A: ... pass ... >>> a=A() >>>...

Thanks. :) DeepDiff currently only shows the difference and not what is matching between the 2 objects. You will want to manually traverse your object and mark everything not reported...

@sant527 yep, you want to set the `verbose_level=2`: https://zepworks.com/deepdiff/current/diff.html

If we put AND and the result shows up, I think it is gonna feel more like a bug than the current behavior, no? We may have to introduce a...

Do you mean item.keys() ? Sep Dehpour > On May 23, 2022, at 7:14 PM, Santhosh Kumar ***@***.***> wrote: > >  > This is not a bug > >...