Roundup Robot added the comment:
New changeset 6b3872a11299 by Benjamin Peterson in branch 'default':
fix possibily uninitialized memory usage (closes #12474)
http://hg.python.org/cpython/rev/6b3872a11299
--
nosy: +python-dev
resolution: -> fixed
stage: -> committed/rejected
status: o
New submission from Stefan Krah :
After 151142c0c5b1 Valgrind finds an invalid read in symtable.c, line 907:
st->st_cur = (PySTEntryObject *)PyList_GET_ITEM(st->st_stack, size - 2);
==14301== Memcheck, a memory error detector
==14301== Copyright (C) 2002-2010, and GNU GPL'd, by Julian Seward