Commit 5f5ec8ef authored by Raymond Hettinger's avatar Raymond Hettinger

Fix spaces/tabs in example.

parent 5eac8693
...@@ -3031,8 +3031,7 @@ PyDoc_STRVAR(count_doc, ...@@ -3031,8 +3031,7 @@ PyDoc_STRVAR(count_doc,
\n\ \n\
Return a count object whose .__next__() method returns consecutive\n\ Return a count object whose .__next__() method returns consecutive\n\
integers starting from zero or, if specified, from firstval.\n\ integers starting from zero or, if specified, from firstval.\n\
If step is specified, counts by that interval.\n\ If step is specified, counts by that interval. Equivalent to:\n\n\
Same as:\n\
def count(firstval=0, step=1):\n\ def count(firstval=0, step=1):\n\
x = firstval\n\ x = firstval\n\
while 1:\n\ while 1:\n\
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment