diff --git a/Objects/stringobject.c b/Objects/stringobject.c index 347f3183381..6d3ca8eb82d 100644 --- a/Objects/stringobject.c +++ b/Objects/stringobject.c @@ -3582,7 +3582,8 @@ string_getnewargs(PyStringObject *v) PyDoc_STRVAR(format__doc__, "S.format(*args, **kwargs) -> string\n\ \n\ -"); +Return a formatted version of S, using substitutions from args and kwargs.\n\ +The substitutions are identified by braces ('{' and '}')."); static PyObject * string__format__(PyObject* self, PyObject* args) @@ -3616,7 +3617,7 @@ done: PyDoc_STRVAR(p_format__doc__, "S.__format__(format_spec) -> string\n\ \n\ -"); +Return a formatted version of S as described by format_spec."); static PyMethodDef diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 07b4e19795f..1cd3688fa5d 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -7728,7 +7728,8 @@ unicode_endswith(PyUnicodeObject *self, PyDoc_STRVAR(format__doc__, "S.format(*args, **kwargs) -> unicode\n\ \n\ -"); +Return a formatted version of S, using substitutions from args and kwargs.\n\ +The substitutions are identified by braces ('{' and '}')."); static PyObject * unicode__format__(PyObject *self, PyObject *args) @@ -7762,7 +7763,7 @@ unicode__format__(PyObject *self, PyObject *args) PyDoc_STRVAR(p_format__doc__, "S.__format__(format_spec) -> unicode\n\ \n\ -"); +Return a formatted version of S as described by format_spec."); static PyObject * unicode__sizeof__(PyUnicodeObject *v)