From c4a2e069b26c3785e4260f8fc96c4a330b722d44 Mon Sep 17 00:00:00 2001 From: Sergey Fedoseev Date: Thu, 18 Jul 2019 11:46:02 +0500 Subject: [PATCH] Adjust zip() docstring zip() can be called without any arguments --- Python/bltinmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 65110d8d12c625..7f187eacd16977 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -2655,7 +2655,7 @@ static PyMethodDef zip_methods[] = { }; PyDoc_STRVAR(zip_doc, -"zip(iter1 [,iter2 [...]]) --> zip object\n\ +"zip(*iterables) --> zip object\n\ \n\ Return a zip object whose .__next__() method returns a tuple where\n\ the i-th element comes from the i-th iterable argument. The .__next__()\n\