Kaydet (Commit) 7f227d90 authored tarafından Zachary Ware's avatar Zachary Ware

Issue #26874: Simplify the divmod docstring

üst 4d4160af
......@@ -796,7 +796,7 @@ divmod as builtin_divmod
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]*/
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