-
Notifications
You must be signed in to change notification settings - Fork 748
=Avoid converting ObservableCollection<T> into python list #773
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
Conversation
i think as a temp fix this is ok, but we are planning to revert this list autoconversion completely once a viable alternative is decided. |
here is the original issue: |
Codecov Report
@@ Coverage Diff @@
## master #773 +/- ##
=========================================
+ Coverage 68.55% 76.86% +8.3%
=========================================
Files 1 62 +61
Lines 283 5752 +5469
Branches 0 909 +909
=========================================
+ Hits 194 4421 +4227
- Misses 89 1029 +940
- Partials 0 302 +302
Continue to review full report at Codecov.
|
Great! sorry for the mess with the featured branch... |
@fdv1 I guess you accidentally closed this one, is this correct? |
This is still broken for some use cases. See, for example: Where Bookmarks is returned as an IList and thus loses the ability to mutate the underlying ObservableCollection. |
Avoid converting objects implementing INotifyPropertyChanged (eg:ObservableCollection) into python list. This would fix #770