bpo-45003: Change __div__ to __truediv__ in py3 language reference. (GH-27951) (GH-27962)

(cherry picked from commit 806e25fd31)

Co-authored-by: Objectivitix <79152594+Objectivitix@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2021-08-26 00:03:18 -07:00 committed by GitHub
parent 0ec17a2494
commit 46970fdd8d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1241,7 +1241,7 @@ integer; the result is that of mathematical division with the 'floor' function
applied to the result. Division by zero raises the :exc:`ZeroDivisionError`
exception.
This operation can be customized using the special :meth:`__div__` and
This operation can be customized using the special :meth:`__truediv__` and
:meth:`__floordiv__` methods.
.. index::