mirror of
https://github.com/python/cpython.git
synced 2025-07-24 03:35:53 +00:00
s/div/truediv/; thanks to Félix-Antoine Fortin from docs@
This commit is contained in:
parent
39b83ac772
commit
83c48822c5
1 changed files with 1 additions and 1 deletions
|
@ -340,7 +340,7 @@ Python syntax and the functions in the :mod:`operator` module.
|
|||
+-----------------------+-------------------------+---------------------------------------+
|
||||
| Containment Test | ``obj in seq`` | ``contains(seq, obj)`` |
|
||||
+-----------------------+-------------------------+---------------------------------------+
|
||||
| Division | ``a / b`` | ``div(a, b)`` |
|
||||
| Division | ``a / b`` | ``truediv(a, b)`` |
|
||||
+-----------------------+-------------------------+---------------------------------------+
|
||||
| Division | ``a // b`` | ``floordiv(a, b)`` |
|
||||
+-----------------------+-------------------------+---------------------------------------+
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue