summaryrefslogtreecommitdiffstats
path: root/Lib/UserString.py
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2003-08-27 10:49:34 (GMT)
committerThomas Heller <theller@ctypes.org>2003-08-27 10:49:34 (GMT)
commit4fc4e2dceefb7bd250770f8ce075dd9bc81ba2a1 (patch)
treeab57ca905e012f18434ad3b4b3481a8a540b809c /Lib/UserString.py
parenteb85c6617bb868ee1efd0851bc6bd3bd1adcda8a (diff)
downloadcpython-4fc4e2dceefb7bd250770f8ce075dd9bc81ba2a1.zip
cpython-4fc4e2dceefb7bd250770f8ce075dd9bc81ba2a1.tar.gz
cpython-4fc4e2dceefb7bd250770f8ce075dd9bc81ba2a1.tar.bz2
Remove a typo.
Diffstat (limited to 'Lib/UserString.py')
-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."""