From: Thomas Heller Date: Wed, 27 Aug 2003 10:49:34 +0000 (+0000) Subject: Remove a typo. X-Git-Tag: v2.3.1~128 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4fc4e2dceefb7bd250770f8ce075dd9bc81ba2a1;p=thirdparty%2FPython%2Fcpython.git Remove a typo. --- diff --git a/Lib/UserString.py b/Lib/UserString.py index fcd115d005fa..730cdba9e305 100755 --- a/Lib/UserString.py +++ b/Lib/UserString.py @@ -132,7 +132,7 @@ class MutableString(UserString): But the purpose of this class is an educational one: to prevent people from inventing their own mutable string class derived from UserString and than forget thereby to remove (override) the - __hash__ method inherited from ^UserString. This would lead to + __hash__ method inherited from UserString. This would lead to errors that would be very hard to track down. A faster and better solution is to rewrite your program using lists."""