summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_iter.py
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-11-18 21:14:42 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-11-18 21:14:42 (GMT)
commit6451497df166adf4e57689f571d840d3cca3f12d (patch)
tree735b450a96f8440c0cad52c73c6306cd6301c5f5 /Lib/test/test_iter.py
parent01560de287c12a93859554951d99eb66a60107c6 (diff)
downloadcpython-6451497df166adf4e57689f571d840d3cca3f12d.zip
cpython-6451497df166adf4e57689f571d840d3cca3f12d.tar.gz
cpython-6451497df166adf4e57689f571d840d3cca3f12d.tar.bz2
#7782: add a test for test_iter.
Diffstat (limited to 'Lib/test/test_iter.py')
-rw-r--r--Lib/test/test_iter.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/Lib/test/test_iter.py b/Lib/test/test_iter.py
index 64984cc..8dc39d2 100644
--- a/Lib/test/test_iter.py
+++ b/Lib/test/test_iter.py
@@ -908,6 +908,21 @@ class TestCase(unittest.TestCase):
except TypeError:
pass
+ def test_extending_list_with_iterator_does_not_segfault(self):
+ # The code to extend a list with an iterator has a fair
+ # amount of nontrivial logic in terms of guessing how
+ # much memory to allocate in advance, "stealing" refs,
+ # and then shrinking at the end. This is a basic smoke
+ # test for that scenario.
+ def gen():
+ for i in range(500):
+ yield i
+ lst = [0] * 500
+ for i in range(240):
+ lst.pop(0)
+ lst.extend(gen())
+ self.assertEqual(len(lst), 760)
+
def test_main():
run_unittest(TestCase)