mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
Merged revisions 76763 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r76763 | antoine.pitrou | 2009-12-12 20:13:08 +0100 (sam., 12 déc. 2009) | 7 lines 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) ........
This commit is contained in:
parent
05d2e08401
commit
6b7dfc924d
3 changed files with 8 additions and 1 deletions
|
@ -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():
|
||||
support.run_unittest(TupleTest)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue