summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2003-08-27 10:48:12 (GMT)
committerThomas Heller <theller@ctypes.org>2003-08-27 10:48:12 (GMT)
commit611dbc338e957df79c85c527f2508d3bf17e179a (patch)
tree3dccda93d528f7113b5feaec3f77e6761c32eb39
parent9bfe533c6967e2813420d75d4830de3923db0627 (diff)
downloadcpython-611dbc338e957df79c85c527f2508d3bf17e179a.zip
cpython-611dbc338e957df79c85c527f2508d3bf17e179a.tar.gz
cpython-611dbc338e957df79c85c527f2508d3bf17e179a.tar.bz2
Remove a typo. (Or is this some markup I don't understand? ;-)
-rwxr-xr-xLib/UserString.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/UserString.py b/Lib/UserString.py
index fcd115d..730cdba 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."""