Kevin
Kevin
> > > Does `eyeD3 --verbose` show an APIC frame. If not, te image frame is removed. Tags can have padding though, I suspect the zero byte padding may be...
`name 'getConfigExpress' is not defined` I can trace `getConfigExpress()` to PandaModules.py in my IDE though. Any particular Panda3D version I ought to be using? Edit: I gave [1.9.4](https://www.panda3d.org/download/sdk-1-9-4/) a try....
Forgot to mention this was for Python version 3.9.5, and dateutil version 2.8.2. I would also like to try to handle this bugfix.
So from my debugging, I am finding that `__eq__()` is returning here: https://github.com/dateutil/dateutil/blob/b21555f3b6afd2a0c660293b21e19b32f1d4f50e/dateutil/relativedelta.py#L522 `bool(NotImplemented)` returns True, but this [Stack Overflow answer](https://stackoverflow.com/a/879005/5849965) discusses what `NotImplemented` may actually do. So, with all...
Thank you for taking the time to write down an excellent explanation. As you suggested, removing the `__ne__` method does work, so I updated [my pull request](https://github.com/dateutil/dateutil/pull/1158) with the removed...
Kudos to @pganssle for his help with fixing this bug. I honestly probably wouldn't have thought to try that, and I still don't quite fully understand how that fixes the...
> I'm not sure this works for Python 2. Have you checked if there are tests in the test suite validating this? Seems like [test_relativedelta.py was ran on Python 2.7...
Sorry to re-request the review late, I didn't know that there was a button to re-request reviewers and that I ought to use that button. First time making an open-source...
My apologies for the delay once again, I didn't realize my branch had merge conflicts. They should be fixed now. Please advise if there's a better git workflow you would...