summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-12-12 19:13:08 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-12-12 19:13:08 (GMT)
commitc169c781a807e0d0e1463d510be9523b1d6c2689 (patch)
tree0a6385420fac9e485197648d07692bf7955b0baf /Lib
parent9be87bc992465abaa572f86fcf4e375192617a6f (diff)
downloadcpython-c169c781a807e0d0e1463d510be9523b1d6c2689.zip
cpython-c169c781a807e0d0e1463d510be9523b1d6c2689.tar.gz
cpython-c169c781a807e0d0e1463d510be9523b1d6c2689.tar.bz2
Issue #7466: segmentation fault when the garbage collector is called
in the middle of populating a tuple. Patch by Florent Xicluna. (note: no NEWS entry for trunk since the bug was introduced in 2.7/3.1)
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_tuple.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_tuple.py b/Lib/test/test_tuple.py
index 6436412..2e34642 100644
--- a/Lib/test/test_tuple.py
+++ b/Lib/test/test_tuple.py
@@ -146,6 +146,9 @@ class TupleTest(seq_tests.CommonTest):
pass
self.check_track_dynamic(MyTuple, True)
+ def test_bug7466(self):
+ # Trying to untrack an unfinished tuple could crash Python
+ self._not_tracked(tuple(gc.collect() for i in range(101)))
def test_main():
test_support.run_unittest(TupleTest)