Issue #22883: Got rid of outdated references to PyInt and PyString in comments.
diff --git a/Python/ceval.c b/Python/ceval.c
index e09ff34..5cefdcf 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -4606,7 +4606,7 @@
return result;
}
-/* Extract a slice index from a PyInt or PyLong or an object with the
+/* Extract a slice index from a PyLong or an object with the
nb_index slot defined, and store in *pi.
Silently reduce values larger than PY_SSIZE_T_MAX to PY_SSIZE_T_MAX,
and silently boost values less than -PY_SSIZE_T_MAX-1 to -PY_SSIZE_T_MAX-1.