[Python-checkins] r68133 - in python/trunk/Lib/test: test_deque.py test_dict.py test_set.py

antoine.pitrou python-checkins at python.org
Thu Jan 1 16:38:03 CET 2009


Author: antoine.pitrou
Date: Thu Jan  1 16:38:03 2009
New Revision: 68133

Log:
fill in actual issue number in tests

Modified:
   python/trunk/Lib/test/test_deque.py
   python/trunk/Lib/test/test_dict.py
   python/trunk/Lib/test/test_set.py

Modified: python/trunk/Lib/test/test_deque.py
==============================================================================
--- python/trunk/Lib/test/test_deque.py	(original)
+++ python/trunk/Lib/test/test_deque.py	Thu Jan  1 16:38:03 2009
@@ -420,7 +420,7 @@
             gc.collect()
 
     def test_container_iterator(self):
-        # Bug # XXX: tp_traverse was not implemented for deque iterator objects
+        # Bug #3680: tp_traverse was not implemented for deque iterator objects
         class C(object):
             pass
         for i in range(2):

Modified: python/trunk/Lib/test/test_dict.py
==============================================================================
--- python/trunk/Lib/test/test_dict.py	(original)
+++ python/trunk/Lib/test/test_dict.py	Thu Jan  1 16:38:03 2009
@@ -556,7 +556,7 @@
         d = {}
 
     def test_container_iterator(self):
-        # Bug # XXX: tp_traverse was not implemented for dictiter objects
+        # Bug #3680: tp_traverse was not implemented for dictiter objects
         class C(object):
             pass
         iterators = (dict.iteritems, dict.itervalues, dict.iterkeys)

Modified: python/trunk/Lib/test/test_set.py
==============================================================================
--- python/trunk/Lib/test/test_set.py	(original)
+++ python/trunk/Lib/test/test_set.py	Thu Jan  1 16:38:03 2009
@@ -324,7 +324,7 @@
         self.assertEqual(d3, dict.fromkeys(d, 123))
 
     def test_container_iterator(self):
-        # Bug # XXX: tp_traverse was not implemented for set iterator object
+        # Bug #3680: tp_traverse was not implemented for set iterator object
         class C(object):
             pass
         obj = C()


More information about the Python-checkins mailing list