From: Thomas Heller Date: Wed, 27 Aug 2003 10:48:12 +0000 (+0000) Subject: Remove a typo. (Or is this some markup I don't understand? ;-) X-Git-Tag: v2.4a1~1703 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=611dbc338e957df79c85c527f2508d3bf17e179a;p=python Remove a typo. (Or is this some markup I don't understand? ;-) --- diff --git a/Lib/UserString.py b/Lib/UserString.py index fcd115d005..730cdba9e3 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."""