-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dict
: fix the __eq__
implementation to call super
The `__eq__` method was recently implemented for the `Dict` data type but it erroneously did not call through to the super implementation in case the dictionary content does not match that of `other`. This caused the fallback equality implemented on the `Node` base class, which ensures that two nodes with the same UUID compare equal, to be missed.
- Loading branch information
Showing
2 changed files
with
12 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters