From 9594942716a8f9c557b85d31751753d89cd7cebf Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Tue, 27 Aug 2013 19:40:23 +0300 Subject: Issue #18783: Removed existing mentions of Python long type in docstrings, error messages and comments. --- Objects/rangeobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Objects/rangeobject.c') diff --git a/Objects/rangeobject.c b/Objects/rangeobject.c index 214b4556b5..343881ae31 100644 --- a/Objects/rangeobject.c +++ b/Objects/rangeobject.c @@ -933,7 +933,7 @@ PyTypeObject PyRange_Type = { /*********************** 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. */ -- cgit v1.2.1