This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: langref: missing item in numeric op list
Type: Stage:
Components: Documentation Versions: Python 2.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: georg.brandl, phr
Priority: normal Keywords:

Created on 2007-01-17 18:26 by phr, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg31067 - (view) Author: paul rubin (phr) Date: 2007-01-17 18:26
Language ref manual sec 3.4.7 "Emulating numeric types", the section documenting __iadd__, __imul__, etc. says "These methods are called to implement the augmented arithmetic operations (+=, -=, *=, /=, %=, **=, <<=, ...)".  /= is for truediv and %= is for mod.  //= (floordiv) should also be in this list since it is one of the operations described.
msg31068 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2007-01-17 21:10
Thanks, fixed in rev. 53475, 53476 (2.5).
History
Date User Action Args
2022-04-11 14:56:22adminsetgithub: 44485
2007-01-17 18:26:06phrcreate