Message246394
Changeset c9782a9ac031 caused segmentation fault when underlying table of the set is reallocated but the number of set elements is kept the same during iteration. Crash reproducer:
s = set(range(100))
s.clear()
s.update(range(100))
si = iter(s)
s.clear()
a = list(range(100))
s.update(range(100))
list(si) |
|
Date |
User |
Action |
Args |
2015-07-07 08:09:09 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, rhettinger |
2015-07-07 08:09:09 | serhiy.storchaka | set | messageid: <1436256549.64.0.540045021934.issue24581@psf.upfronthosting.co.za> |
2015-07-07 08:09:09 | serhiy.storchaka | link | issue24581 messages |
2015-07-07 08:09:09 | serhiy.storchaka | create | |
|