cutile-python
cutile-python copied to clipboard
Fix: Correct SliceType __eq__ comparison logic
This PR fixes an incorrect equality comparison in SliceType.
Previously: eq used isinstance(other, NoneType) This produced incorrect results for SliceType comparisons.
Now: eq correctly checks isinstance(other, SliceType)
This resolves issue #8
Hi @Navneetpandit7226 , thank you for your pull request. Since our public CI system is not working yet, I have integrated your change manually into our internal git repo. It will be mirrored back into GitHub soon.
This change has been integrated.