commit | 64f8c7ec4f7ed37490e066d9f092323eeaa83c8c | [log] [tgz] |
---|---|---|
author | Zachary Ware <zachary.ware@gmail.com> | Thu Apr 28 14:23:48 2016 -0500 |
committer | Zachary Ware <zachary.ware@gmail.com> | Thu Apr 28 14:23:48 2016 -0500 |
tree | a8f98fbd2d40043d6fde6466b5db2df9cd202baa | |
parent | 44f99d0aaf032be8b27174b3c5703c0d4afbc48e [diff] |
Issue #26874: Make divmod docstring and full doc match
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index d99b676..2621f94 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c
@@ -625,7 +625,7 @@ 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 *