Issue #28045: Fix comment in range_contains_long()

Patch by wim glenn.
diff --git a/Objects/rangeobject.c b/Objects/rangeobject.c
index 0e9eb20..288be4f 100644
--- a/Objects/rangeobject.c
+++ b/Objects/rangeobject.c
@@ -406,7 +406,7 @@
     tmp2 = PyNumber_Remainder(tmp1, r->step);
     if (tmp2 == NULL)
         goto end;
-    /* result = (int(ob) - start % step) == 0 */
+    /* result = ((int(ob) - start) % step) == 0 */
     result = PyObject_RichCompareBool(tmp2, zero, Py_EQ);
   end:
     Py_XDECREF(tmp1);