Commit 7f227d90 authored by Zachary Ware's avatar Zachary Ware

Issue #26874: Simplify the divmod docstring

parent 4d4160af
...@@ -796,7 +796,7 @@ divmod as builtin_divmod ...@@ -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//y, x%y). Invariant: div*y + mod == x.
[clinic start generated code]*/ [clinic start generated code]*/
static PyObject * static PyObject *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment