From: Zachary Ware Date: Thu, 28 Apr 2016 19:39:50 +0000 (-0500) Subject: Issue #26874: Simplify the divmod docstring X-Git-Tag: v3.6.0a1~103^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7f227d90874e2f59027cebefc3085a9021939480;p=thirdparty%2FPython%2Fcpython.git Issue #26874: Simplify the divmod docstring --- diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 909c5b904f54..0065c9e009ed 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -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 *