-
Notifications
You must be signed in to change notification settings - Fork 2.3k
FIX : fixed tuples in hashing, by converting them to lists #498
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FIX : fixed tuples in hashing, by converting them to lists #498
Conversation
Co-authored-by: kilacoda <65204531+kilacoda@users.noreply.github.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, but not sure why tests are failing.
Windows tests are curently failing on the whole repo ;/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks good to me! Please consider the minor suggestion I made for slightly reformatting the comment.
Co-authored-by: Benjamin Hackl <devel@benjamin-hackl.at>
List of Changes
Explanation for Changes
Generally, scene caching iteratively check in every iterables for circular references. If one is found, then the value in the iterable causing the circular reference is replaced. Same if an element has already been processed.
The issue is, if the iterable is a tuple, as tuples are immutable, it is impossible to modyuf it
Testing Status
Acknowledgement