diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2019-09-21 19:57:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-21 19:57:44 (GMT) |
commit | b104ecbbafc14f9ca0c8371963c45dca893f6b75 (patch) | |
tree | a7003c4a6eb416a571423391d9233333fcd5d87d /Python/clinic | |
parent | 030fe8e34d3879ffbd57b702b111ee6d4e011441 (diff) | |
download | cpython-b104ecbbafc14f9ca0c8371963c45dca893f6b75.zip cpython-b104ecbbafc14f9ca0c8371963c45dca893f6b75.tar.gz cpython-b104ecbbafc14f9ca0c8371963c45dca893f6b75.tar.bz2 |
Shorter docstring (GH-16322)
Diffstat (limited to 'Python/clinic')
-rw-r--r-- | Python/clinic/bltinmodule.c.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/clinic/bltinmodule.c.h b/Python/clinic/bltinmodule.c.h index f6c5b7c..d15af1f 100644 --- a/Python/clinic/bltinmodule.c.h +++ b/Python/clinic/bltinmodule.c.h @@ -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]*/ |