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: doc error in __ifloordiv__ and __itruediv__
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.6, Python 3.2, Python 3.3, Python 3.4, Python 3.5, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, donlorenzo, python-dev
Priority: normal Keywords: patch

Created on 2014-10-31 12:02 by donlorenzo, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
inplace_div_doc.patch donlorenzo, 2014-10-31 12:02 patch to typeobject.c to represent __itruediv__ and __ifloordiv__ corretly
Messages (3)
msg230337 - (view) Author: Lorenz Quack (donlorenzo) * Date: 2014-10-31 12:02
the doc string of __itruediv__ and __ifloordiv__ represent the operator as x/y and x//y respectively.
This is obviously false and should be x/=y and x//=y

patch attached
msg230338 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-10-31 12:13
New changeset 147518a95b60 by Georg Brandl in branch '3.4':
Closes #22772: fix __ifloordiv__ and __itruediv__ docstring.
https://hg.python.org/cpython/rev/147518a95b60
msg230339 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-10-31 12:13
New changeset 3f13f1620d70 by Georg Brandl in branch '2.7':
Closes #22772: fix __ifloordiv__ and __itruediv__ docstring.
https://hg.python.org/cpython/rev/3f13f1620d70
History
Date User Action Args
2022-04-11 14:58:09adminsetgithub: 66961
2014-10-31 12:13:46python-devsetmessages: + msg230339
2014-10-31 12:13:31python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg230338

resolution: fixed
stage: resolved
2014-10-31 12:02:26donlorenzocreate