Issue #14783: Backport changes from 3.2.
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index b4f0e24..d25b14c 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -2004,7 +2004,8 @@
 }
 
 PyDoc_STRVAR(range_doc,
-"range([start,] stop[, step]) -> list of integers\n\
+"range(stop) -> list of integers\n\
+range(start, stop[, step]) -> list of integers\n\
 \n\
 Return a list containing an arithmetic progression of integers.\n\
 range(i, j) returns [i, i+1, i+2, ..., j-1]; start (!) defaults to 0.\n\