Skip to content

Commit b104ecb

Browse files
authored
Shorter docstring (pythonGH-16322)
1 parent 030fe8e commit b104ecb

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Python/bltinmodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1800,7 +1800,7 @@ pow as builtin_pow
18001800
exp: object
18011801
mod: object = None
18021802
1803-
Equivalent to base**exp (with two arguments) or base**exp % mod (with three arguments)
1803+
Equivalent to base**exp with 2 arguments or base**exp % mod with 3 arguments
18041804
18051805
Some types, such as ints, are able to use a more efficient algorithm when
18061806
invoked using the three argument form.
@@ -1809,7 +1809,7 @@ invoked using the three argument form.
18091809
static PyObject *
18101810
builtin_pow_impl(PyObject *module, PyObject *base, PyObject *exp,
18111811
PyObject *mod)
1812-
/*[clinic end generated code: output=3ca1538221bbf15f input=bd72d0a0ec8e5eb5]*/
1812+
/*[clinic end generated code: output=3ca1538221bbf15f input=435dbd48a12efb23]*/
18131813
{
18141814
return PyNumber_Power(base, exp, mod);
18151815
}

Python/clinic/bltinmodule.c.h

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)