[Python-checkins] peps: Fix typo found by Peter Funk. Thanx, Peter!

georg.brandl python-checkins at python.org
Wed Mar 23 21:26:41 CET 2011


http://hg.python.org/peps/rev/ddf56a9da41a
changeset:   145:ddf56a9da41a
user:        Thomas Wouters <thomas at python.org>
date:        Wed Aug 23 12:34:02 2000 +0000
summary:
  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! :)

files:
  pep-0203.txt |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/pep-0203.txt b/pep-0203.txt
--- a/pep-0203.txt
+++ b/pep-0203.txt
@@ -67,7 +67,7 @@
     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'.
  

-- 
Repository URL: http://hg.python.org/peps


More information about the Python-checkins mailing list