cpython (merge 3.5 -> default): Closes #26874: Merge with 3.5
https://hg.python.org/cpython/rev/28c89ebd6e5a changeset: 101170:28c89ebd6e5a parent: 101167:8ab8f5259f09 parent: 101169:ef193be5c3cd user: Zachary Ware <zachary.ware@gmail.com> date: Thu Apr 28 14:25:32 2016 -0500 summary: Closes #26874: Merge with 3.5 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-x%y)//y, x%y). Invariant: div*y + mod == x. [clinic start generated code]*/ static PyObject * -- Repository URL: https://hg.python.org/cpython
participants (1)
-
zach.ware