mirror of
https://github.com/python/cpython.git
synced 2024-11-24 18:34:43 +08:00
Issue #18912: Fix indentation in docstring
Contributed by Jeroen Van Goey
This commit is contained in:
commit
207fe01187
@ -445,6 +445,7 @@ Yannick Gingras
|
||||
Matt Giuca
|
||||
Wim Glenn
|
||||
Michael Goderbauer
|
||||
Jeroen Van Goey
|
||||
Christoph Gohlke
|
||||
Tim Golden
|
||||
Guilherme Gonçalves
|
||||
|
@ -3978,10 +3978,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)
|
||||
|
Loading…
Reference in New Issue
Block a user