Issue #18783: Removed existing mentions of Python long type in docstrings,
error messages and comments.
diff --git a/Objects/rangeobject.c b/Objects/rangeobject.c
index 214b455..343881a 100644
--- a/Objects/rangeobject.c
+++ b/Objects/rangeobject.c
@@ -933,7 +933,7 @@
 /*********************** range Iterator **************************/
 
 /* There are 2 types of iterators, one for C longs, the other for
-   Python longs (ie, PyObjects).  This should make iteration fast
+   Python ints (ie, PyObjects).  This should make iteration fast
    in the normal case, but possible for any numeric value.
 */