-
Notifications
You must be signed in to change notification settings - Fork 85
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: Add |= support to TraitDict for Python >= 3.9 #1306
Conversation
do you mean fixes #1016 ? |
Thank you, yes. No idea where I got that number from. Will fix. |
@@ -121,6 +122,51 @@ def test_delitem_not_found(self): | |||
str(python_e.exception), | |||
) | |||
|
|||
if sys.version_info >= (3, 9): |
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.
Would conditional skips of tests be better here?
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.
Possibly. I considered it, but right now we get a skip-free test run if all optional dependencies are installed, and I'd quite like to keep that property - it reassures me that all the tests have been run.
|
||
retval = super().__ior__(validated_dict) | ||
|
||
if added or changed: |
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.
There is a difference in behaviour here between this and update
:
x.a |= {}
will not notify, but
x.a.update({})
does.
I would expect them to be consistent, and this may lead to issues in the future if people replace .update
with |=
and expect the same behaviour.
Edit: ah I see #1307.
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 PR fixes
|=
operations onTraitDict
. In Python 3.9, those operations mutate the dictionary, but without corresponding support inTraitDict
, that mutation will not emit a notification. This PR adds the missing notification.Fixes #1016.
Checklist
[ ] Update API reference (No update neededdocs/source/traits_api_reference
)[ ] Update User manual (No update neededdocs/source/traits_user_manual
)[ ] Update type annotation hints inNo stubs exist for TraitDict and friendstraits-stubs