https://hg.python.org/cpython/rev/3edf8aa1ed97 changeset: 101172:3edf8aa1ed97 branch: 3.5 parent: 101169:ef193be5c3cd user: Zachary Ware <zachary.ware@gmail.com> date: Thu Apr 28 14:39:50 2016 -0500 summary: Issue #26874: Simplify the divmod docstring files: Python/bltinmodule.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -796,7 +796,7 @@ 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 * -- Repository URL: https://hg.python.org/cpython