[Python-checkins] cpython (3.4): remove buzzword (closes #23210)

benjamin.peterson python-checkins at python.org
Fri Jan 9 23:41:10 CET 2015


https://hg.python.org/cpython/rev/79f33147949b
changeset:   94103:79f33147949b
branch:      3.4
parent:      94101:726d67a7ebf2
user:        Benjamin Peterson <benjamin at python.org>
date:        Fri Jan 09 16:40:23 2015 -0600
summary:
  remove buzzword (closes #23210)

files:
  Objects/rangeobject.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Objects/rangeobject.c b/Objects/rangeobject.c
--- a/Objects/rangeobject.c
+++ b/Objects/rangeobject.c
@@ -139,7 +139,7 @@
 "range(stop) -> range object\n\
 range(start, stop[, step]) -> range object\n\
 \n\
-Return a virtual sequence of numbers from start to stop by step.");
+Return a sequence of numbers from start to stop by step.");
 
 static void
 range_dealloc(rangeobject *r)

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list