From 764cf7ed82a5b7911e227353c5259bb908aeb7ef Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Fri, 23 Feb 2007 00:22:39 +0000 Subject: [PATCH] Fix typo in comment --- Lib/test/test_bsddb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_bsddb.py b/Lib/test/test_bsddb.py index 474f3da42b2..fbe855fb2b5 100755 --- a/Lib/test/test_bsddb.py +++ b/Lib/test/test_bsddb.py @@ -205,7 +205,7 @@ class TestBSDDB(unittest.TestCase): # create iterator i = self.f.iteritems() nc2 = len(self.f._cursor_refs) - # use the iterator (should run to the first yeild, creating the cursor) + # use the iterator (should run to the first yield, creating the cursor) k, v = i.next() nc3 = len(self.f._cursor_refs) # destroy the iterator; this should cause the weakref callback