Commit 733dc744 authored by Antoine Pitrou's avatar Antoine Pitrou

fill in actual issue number in tests

parent aa687902
...@@ -420,7 +420,7 @@ class TestBasic(unittest.TestCase): ...@@ -420,7 +420,7 @@ class TestBasic(unittest.TestCase):
gc.collect() gc.collect()
def test_container_iterator(self): 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): class C(object):
pass pass
for i in range(2): for i in range(2):
......
...@@ -556,7 +556,7 @@ class DictTest(unittest.TestCase): ...@@ -556,7 +556,7 @@ class DictTest(unittest.TestCase):
d = {} d = {}
def test_container_iterator(self): 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): class C(object):
pass pass
iterators = (dict.iteritems, dict.itervalues, dict.iterkeys) iterators = (dict.iteritems, dict.itervalues, dict.iterkeys)
......
...@@ -324,7 +324,7 @@ class TestJointOps(unittest.TestCase): ...@@ -324,7 +324,7 @@ class TestJointOps(unittest.TestCase):
self.assertEqual(d3, dict.fromkeys(d, 123)) self.assertEqual(d3, dict.fromkeys(d, 123))
def test_container_iterator(self): 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): class C(object):
pass pass
obj = C() obj = C()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment