From: Walter Dörwald Date: Tue, 12 Dec 2006 21:55:31 +0000 (+0000) Subject: Fix typo. X-Git-Tag: v2.6a1~2375 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=da1ad32cec753fb8db779c20897b5fd288381fe7;p=thirdparty%2FPython%2Fcpython.git Fix typo. --- diff --git a/Lib/test/test_weakref.py b/Lib/test/test_weakref.py index 18ab4012fb7f..d2e4d3421357 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.)