summaryrefslogtreecommitdiff
path: root/Lib/test
diff options
context:
space:
mode:
authorWalter Dörwald <walter@livinglogic.de>2006-12-12 21:55:31 +0000
committerWalter Dörwald <walter@livinglogic.de>2006-12-12 21:55:31 +0000
commitda1ad32cec753fb8db779c20897b5fd288381fe7 (patch)
treec93c6247cacb08b8f7fb5934597c5c6191164fdf /Lib/test
parent66a17266206cb70bf07c2df93b3536d3c70a5121 (diff)
downloadcpython-git-da1ad32cec753fb8db779c20897b5fd288381fe7.tar.gz
Fix typo.
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_weakref.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_weakref.py b/Lib/test/test_weakref.py
index 18ab4012fb..d2e4d34213 100644
--- a/Lib/test/test_weakref.py
+++ b/Lib/test/test_weakref.py
@@ -189,7 +189,7 @@ class ReferencesTestCase(TestBase):
# None as the value for the callback, where either means "no
# callback". The "no callback" ref and proxy objects are supposed
# to be shared so long as they exist by all callers so long as
- # they are active. In Python 2.3.3 and earlier, this guaranttee
+ # they are active. In Python 2.3.3 and earlier, this guarantee
# was not honored, and was broken in different ways for
# PyWeakref_NewRef() and PyWeakref_NewProxy(). (Two tests.)