Fix typo found by Peter Funk. Thanx, Peter!

(Of course, I put it there on purpose, just to see if anyone was paying
attention. Really! :)
This commit is contained in:
Thomas Wouters 2000-08-23 12:34:02 +00:00
parent 5cf850f282
commit dcef105339
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ Proposed semantics
attempted, and finally y.__radd__(x) if __add__ is missing too.
There is no `right-hand-side' variant of __iadd__, because that
would require for `y' to know how to in-place modify `x', which is
unsafe to say the least. The __add__ hook should behave similar
unsafe to say the least. The __iadd__ hook should behave similar
to __add__, returning the result of the operation (which could be
`self') which is to be stored in the variable `x'.