diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2016-04-28 19:25:32 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2016-04-28 19:25:32 (GMT) |
commit | 54559b6511446837a472f667bbe4fea87758163f (patch) | |
tree | 7cbe651730549b005b66e4ee96ff47ebec5a9c32 /Python | |
parent | b275210a3b0e04691ebd1c1d0374720be59911b9 (diff) | |
parent | 4d4160af6ac4cf00ec9c662d3fada8b34d858391 (diff) | |
download | cpython-54559b6511446837a472f667bbe4fea87758163f.zip cpython-54559b6511446837a472f667bbe4fea87758163f.tar.gz cpython-54559b6511446837a472f667bbe4fea87758163f.tar.bz2 |
Closes #26874: Merge with 3.5
Diffstat (limited to 'Python')
-rw-r--r-- | Python/bltinmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 29fcffe..e2ac8e8 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-x%y)//y, x%y). Invariant: div*y + mod == x. [clinic start generated code]*/ static PyObject * |