From: Eli Bendersky Date: Tue, 3 Sep 2013 13:41:58 +0000 (-0700) Subject: Close #18912: Fix indentation in docstring X-Git-Tag: v2.7.6rc1~180 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e6802db7d12a84a1e3bf5def71e7bc4847e811dd;p=thirdparty%2FPython%2Fcpython.git Close #18912: Fix indentation in docstring Contributed by Jeroen Van Goey --- diff --git a/Modules/itertoolsmodule.c b/Modules/itertoolsmodule.c index ea822913662b..c0456b839f72 100644 --- a/Modules/itertoolsmodule.c +++ b/Modules/itertoolsmodule.c @@ -3426,10 +3426,10 @@ PyDoc_STRVAR(count_doc, Return a count object whose .next() method returns consecutive values.\n\ Equivalent to:\n\n\ def count(firstval=0, step=1):\n\ - x = firstval\n\ - while 1:\n\ - yield x\n\ - x += step\n"); + x = firstval\n\ + while 1:\n\ + yield x\n\ + x += step\n"); static PyTypeObject count_type = { PyVarObject_HEAD_INIT(NULL, 0)