cutile-python icon indicating copy to clipboard operation
cutile-python copied to clipboard

Fix: Correct SliceType __eq__ comparison logic

Open Navneetpandit7226 opened this issue 1 month ago • 1 comments

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

Navneetpandit7226 avatar Dec 07 '25 14:12 Navneetpandit7226

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.

gbonik avatar Dec 08 '25 19:12 gbonik

This change has been integrated.

haijieg avatar Dec 10 '25 19:12 haijieg