cpython: 35cb75b9d653 (original) (raw)
Mercurial > cpython
changeset 83238:35cb75b9d653 3.3
don't run frame if it has no stack (closes #17669) [#17669]
Benjamin Peterson benjamin@python.org | |
---|---|
date | Wed, 10 Apr 2013 17:00:56 -0400 |
parents | 172f825d7fc9 |
children | 0b2d4089180c 5f8fe382f9db |
files | Misc/NEWS Objects/genobject.c |
diffstat | 2 files changed, 3 insertions(+), 1 deletions(-)[+] [-] Misc/NEWS 2 Objects/genobject.c 2 |
line wrap: on
line diff
--- a/Misc/NEWS +++ b/Misc/NEWS @@ -12,6 +12,8 @@ What's New in Python 3.3.2? Core and Builtins ----------------- +- Issue #17669: Fix crash involving finalization of generators using yield from. +
- Issue #17619: Make input() check for Ctrl-C correctly on Windows.
- Issue #17610: Don't rely on non-standard behavior of the C qsort() function.
--- a/Objects/genobject.c +++ b/Objects/genobject.c @@ -178,7 +178,7 @@ gen_yf(PyGenObject *gen) PyObject *yf = NULL; PyFrameObject *f = gen->gi_frame;