diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-01-01 15:38:03 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-01-01 15:38:03 (GMT) |
commit | 733dc74442a89972278d1fdf8a64b5739cdbad67 (patch) | |
tree | 622f11715aea8476bc7873c5cb04800c165943db | |
parent | aa687902f21dc32a72f578a992cc9e44444ced44 (diff) | |
download | cpython-733dc74442a89972278d1fdf8a64b5739cdbad67.zip cpython-733dc74442a89972278d1fdf8a64b5739cdbad67.tar.gz cpython-733dc74442a89972278d1fdf8a64b5739cdbad67.tar.bz2 |
fill in actual issue number in tests
-rw-r--r-- | Lib/test/test_deque.py | 2 | ||||
-rw-r--r-- | Lib/test/test_dict.py | 2 | ||||
-rw-r--r-- | Lib/test/test_set.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_deque.py b/Lib/test/test_deque.py index 4e2de3d..02dadef 100644 --- a/Lib/test/test_deque.py +++ b/Lib/test/test_deque.py @@ -420,7 +420,7 @@ class TestBasic(unittest.TestCase): 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): diff --git a/Lib/test/test_dict.py b/Lib/test/test_dict.py index 14d62f5..0907744 100644 --- a/Lib/test/test_dict.py +++ b/Lib/test/test_dict.py @@ -556,7 +556,7 @@ class DictTest(unittest.TestCase): 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) diff --git a/Lib/test/test_set.py b/Lib/test/test_set.py index 8d05712..886c4b8 100644 --- a/Lib/test/test_set.py +++ b/Lib/test/test_set.py @@ -324,7 +324,7 @@ class TestJointOps(unittest.TestCase): 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() |