mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Shorter docstring (GH-16322)
This commit is contained in:
parent
030fe8e34d
commit
b104ecbbaf
2 changed files with 4 additions and 4 deletions
4
Python/clinic/bltinmodule.c.h
generated
4
Python/clinic/bltinmodule.c.h
generated
|
@ -611,7 +611,7 @@ PyDoc_STRVAR(builtin_pow__doc__,
|
|||
"pow($module, /, base, exp, mod=None)\n"
|
||||
"--\n"
|
||||
"\n"
|
||||
"Equivalent to base**exp (with two arguments) or base**exp % mod (with three arguments)\n"
|
||||
"Equivalent to base**exp with 2 arguments or base**exp % mod with 3 arguments\n"
|
||||
"\n"
|
||||
"Some types, such as ints, are able to use a more efficient algorithm when\n"
|
||||
"invoked using the three argument form.");
|
||||
|
@ -855,4 +855,4 @@ builtin_issubclass(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
|
|||
exit:
|
||||
return return_value;
|
||||
}
|
||||
/*[clinic end generated code: output=1e2a6185e05ecd11 input=a9049054013a1b77]*/
|
||||
/*[clinic end generated code: output=29686a89b739d600 input=a9049054013a1b77]*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue