mirror of
https://github.com/python/cpython.git
synced 2025-11-25 21:11:09 +00:00
Issue #26874: Fix divmod docstring
This commit is contained in:
parent
a87e6ba0ac
commit
4d4160af6a
1 changed files with 1 additions and 1 deletions
|
|
@ -796,7 +796,7 @@ divmod as builtin_divmod
|
||||||
y: object
|
y: object
|
||||||
/
|
/
|
||||||
|
|
||||||
Return the tuple ((x-x%y)/y, x%y). Invariant: div*y + mod == x.
|
Return the tuple ((x-x%y)//y, x%y). Invariant: div*y + mod == x.
|
||||||
[clinic start generated code]*/
|
[clinic start generated code]*/
|
||||||
|
|
||||||
static PyObject *
|
static PyObject *
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue