Skip to content
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

Merged
merged 1 commit into from
Oct 14, 2020

Conversation

mdickinson
Copy link
Member

@mdickinson mdickinson commented Oct 13, 2020

This PR fixes |= operations on TraitDict. In Python 3.9, those operations mutate the dictionary, but without corresponding support in TraitDict, that mutation will not emit a notification. This PR adds the missing notification.

Fixes #1016.

Checklist

  • Tests
  • [ ] Update API reference (docs/source/traits_api_reference) No update needed
  • [ ] Update User manual (docs/source/traits_user_manual) No update needed
  • [ ] Update type annotation hints in traits-stubs No stubs exist for TraitDict and friends

@rahulporuri
Copy link
Contributor

do you mean fixes #1016 ?

@mdickinson
Copy link
Member Author

do you mean fixes #1016 ?

Thank you, yes. No idea where I got that number from. Will fix.

@mdickinson mdickinson changed the title Add |= support to TraitDict for Python >= 3.9 FIX: Add |= support to TraitDict for Python >= 3.9 Oct 13, 2020
@@ -121,6 +122,51 @@ def test_delitem_not_found(self):
str(python_e.exception),
)

if sys.version_info >= (3, 9):
Copy link
Contributor

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?

Copy link
Member Author

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:
Copy link
Contributor

@corranwebster corranwebster Oct 13, 2020

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.

Copy link
Contributor

@corranwebster corranwebster left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks fine as long as #1307 gets merged.

There might be a point to making update and |= work the same in this PR and fixing both in #1307, but that seems like extra work for no great gain.

@mdickinson
Copy link
Member Author

Looks fine as long as #1307 gets merged.

Yep, I'll merge this and #1307 together. Thank you for the reviews!

@mdickinson mdickinson merged commit a40ec14 into master Oct 14, 2020
@mdickinson mdickinson deleted the fix/trait-dict-ior-support branch October 14, 2020 07:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Implement TraitDict.__ior__ for Python versions that support it.
3 participants