[Python-checkins] r53861 - python/trunk/Lib/test/test_bsddb.py

neal.norwitz python-checkins at python.org
Fri Feb 23 01:22:40 CET 2007


Author: neal.norwitz
Date: Fri Feb 23 01:22:39 2007
New Revision: 53861

Modified:
   python/trunk/Lib/test/test_bsddb.py
Log:
Fix typo in comment

Modified: python/trunk/Lib/test/test_bsddb.py
==============================================================================
--- python/trunk/Lib/test/test_bsddb.py	(original)
+++ python/trunk/Lib/test/test_bsddb.py	Fri Feb 23 01:22:39 2007
@@ -205,7 +205,7 @@
         # 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


More information about the Python-checkins mailing list