From 64f8c7ec4f7ed37490e066d9f092323eeaa83c8c Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Thu, 28 Apr 2016 14:23:48 -0500 Subject: [PATCH] Issue #26874: Make divmod docstring and full doc match --- Python/bltinmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index d99b6763f9..2621f947cc 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -625,7 +625,7 @@ builtin_divmod(PyObject *self, PyObject *args) PyDoc_STRVAR(divmod_doc, "divmod(x, y) -> (quotient, remainder)\n\ \n\ -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."); static PyObject * -- 2.50.1