diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2016-04-28 19:40:08 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2016-04-28 19:40:08 (GMT) |
commit | 5031a678214ef6447291e5e47d344acf1318fb70 (patch) | |
tree | 77158409f153d30d6b717f8c7212d588c45e9332 /Python | |
parent | 54559b6511446837a472f667bbe4fea87758163f (diff) | |
parent | 7f227d90874e2f59027cebefc3085a9021939480 (diff) | |
download | cpython-5031a678214ef6447291e5e47d344acf1318fb70.zip cpython-5031a678214ef6447291e5e47d344acf1318fb70.tar.gz cpython-5031a678214ef6447291e5e47d344acf1318fb70.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 e2ac8e8..f9e6639 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 * |