# HG changeset patch # User Zbigniew Jędrzejewski-Szmek # Date 1330026133 -3600 # Branch issue13041 # Node ID 0246f1d9df48e2e3d7d640031909aca229e7febc # Parent c8422915b778a62c5ad062c477629d3568e4cce3 indentation in itertools.count docstring diff --git a/Modules/itertoolsmodule.c b/Modules/itertoolsmodule.c --- a/Modules/itertoolsmodule.c +++ b/Modules/itertoolsmodule.c @@ -3221,10 +3221,10 @@ 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)