diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-09-08 13:23:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-08 13:23:41 (GMT) |
commit | 4cb29bb6832760bc021adc8b8e973e3f3e4d044e (patch) | |
tree | 49e9bd8169547c7ebc39ce3dd2e69235eb54c257 /Misc | |
parent | 2ce26121b1b7f19867988c6bd98d1761e57770b7 (diff) | |
download | cpython-4cb29bb6832760bc021adc8b8e973e3f3e4d044e.zip cpython-4cb29bb6832760bc021adc8b8e973e3f3e4d044e.tar.gz cpython-4cb29bb6832760bc021adc8b8e973e3f3e4d044e.tar.bz2 |
[3.12] gh-102823: Document return type of floor division on floats (GH-102824) (#109092)
gh-102823: Document return type of floor division on floats (GH-102824)
(cherry picked from commit b72251de930c8ec6893f1b3f6fdf1640cc17dfed)
Co-authored-by: Mark Dickinson <dickinsm@gmail.com>
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Diffstat (limited to 'Misc')
-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`. |