File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9026,12 +9026,14 @@ unicode_endswith(PyUnicodeObject *self,
90269026PyDoc_STRVAR (format__doc__ ,
90279027 "S.format(*args, **kwargs) -> str\n\
90289028\n\
9029- " );
9029+ Return a formatted version of S, using substitutions from args and kwargs.\n\
9030+ The substitutions are identified by braces ('{' and '}')." );
90309031
90319032PyDoc_STRVAR (format_map__doc__ ,
90329033 "S.format_map(mapping) -> str\n\
90339034\n\
9034- " );
9035+ Return a formatted version of S, using substitutions from mapping.\n\
9036+ The substitutions are identified by braces ('{' and '}')." );
90359037
90369038static PyObject *
90379039unicode__format__ (PyObject * self , PyObject * args )
@@ -9049,7 +9051,7 @@ unicode__format__(PyObject* self, PyObject* args)
90499051PyDoc_STRVAR (p_format__doc__ ,
90509052 "S.__format__(format_spec) -> str\n\
90519053\n\
9052- " );
9054+ Return a formatted version of S as described by format_spec. " );
90539055
90549056static PyObject *
90559057unicode__sizeof__ (PyUnicodeObject * v )
You can’t perform that action at this time.
0 commit comments