diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2016-04-28 19:24:55 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2016-04-28 19:24:55 (GMT) |
commit | 4d4160af6ac4cf00ec9c662d3fada8b34d858391 (patch) | |
tree | 7349417cd7683bf4849cc661be1435d3af8f2aa8 /Python | |
parent | a87e6ba0ac54113c1617900d18ae05d3c0c2d366 (diff) | |
download | cpython-4d4160af6ac4cf00ec9c662d3fada8b34d858391.zip cpython-4d4160af6ac4cf00ec9c662d3fada8b34d858391.tar.gz cpython-4d4160af6ac4cf00ec9c662d3fada8b34d858391.tar.bz2 |
Issue #26874: Fix divmod docstring
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 a06ef61..909c5b9 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 * |