diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2023-09-07 14:20:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-07 14:20:33 (GMT) |
commit | b72251de930c8ec6893f1b3f6fdf1640cc17dfed (patch) | |
tree | 7bbe225e0c2727d45db2af8b78349d95249ca199 /Misc/NEWS.d/next/Documentation | |
parent | b2729e93e9d73503b1fda4ea4fecd77c58909091 (diff) | |
download | cpython-b72251de930c8ec6893f1b3f6fdf1640cc17dfed.zip cpython-b72251de930c8ec6893f1b3f6fdf1640cc17dfed.tar.gz cpython-b72251de930c8ec6893f1b3f6fdf1640cc17dfed.tar.bz2 |
gh-102823: Document return type of floor division on floats (#102824)
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Diffstat (limited to 'Misc/NEWS.d/next/Documentation')
-rw-r--r-- | Misc/NEWS.d/next/Documentation/2023-03-19-09-39-31.gh-issue-102823.OzsOz0.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Documentation/2023-03-19-09-39-31.gh-issue-102823.OzsOz0.rst b/Misc/NEWS.d/next/Documentation/2023-03-19-09-39-31.gh-issue-102823.OzsOz0.rst new file mode 100644 index 0000000..1e32f3c --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2023-03-19-09-39-31.gh-issue-102823.OzsOz0.rst @@ -0,0 +1,2 @@ +Document the return type of ``x // y`` when ``x`` and ``y`` have type +:class:`float`. |