wrap docstrings so they are less than 80 columns. add spaces after commas.
This commit is contained in:
parent
a5a80cb4a4
commit
017749c33d
|
@ -106,7 +106,8 @@ gen_send_ex(PyGenObject *gen, PyObject *arg, int exc)
|
|||
}
|
||||
|
||||
PyDoc_STRVAR(send_doc,
|
||||
"send(arg) -> send 'arg' into generator, return next yielded value or raise StopIteration.");
|
||||
"send(arg) -> send 'arg' into generator,\n\
|
||||
return next yielded value or raise StopIteration.");
|
||||
|
||||
static PyObject *
|
||||
gen_send(PyGenObject *gen, PyObject *arg)
|
||||
|
@ -203,7 +204,8 @@ gen_del(PyObject *self)
|
|||
|
||||
|
||||
PyDoc_STRVAR(throw_doc,
|
||||
"throw(typ[,val[,tb]]) -> raise exception in generator, return next yielded value or raise StopIteration.");
|
||||
"throw(typ[,val[,tb]]) -> raise exception in generator,\n\
|
||||
return next yielded value or raise StopIteration.");
|
||||
|
||||
static PyObject *
|
||||
gen_throw(PyGenObject *gen, PyObject *args)
|
||||
|
|
Loading…
Reference in New Issue