-
-
Notifications
You must be signed in to change notification settings - Fork 241
Fix broken DeepDiff for dateutils.rrules (#355) #356
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
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.
Hi @uwefladrich
Thanks for the PR. Left a comment.
Also please add your name and github handle to the AUTHORS.md
file.
@uwefladrich dateutils needs to be in the |
Hi @seperman , is there anything I can/should do for this PR at the moment? It seems to be waiting for approval... |
@uwefladrich Thanks for the reminder. |
Codecov Report
@@ Coverage Diff @@
## dev #356 +/- ##
==========================================
- Coverage 99.42% 99.39% -0.04%
==========================================
Files 14 14
Lines 3143 3143
==========================================
- Hits 3125 3124 -1
- Misses 18 19 +1
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
@uwefladrich Merged. Thanks for contributing to DeepDiff. I will ping you once I cut a release. |
Great, thanks for considering it! |
Fix problem with diff'ing
dateutils.rrules
, but potentially other non-sequence iterables. The underlying issue is that DeepDiff sends objects todifflib.SequenceMatcher
without checking that they are actually sequences.