classification
Title: frameobject should not have f_yieldfrom attribute
Type: behavior Stage: committed/rejected
Components: Interpreter Core Versions: Python 3.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: Mark.Shannon, benjamin.peterson, meador.inge, ncoghlan, python-dev
Priority: normal Keywords: patch

Created on 2012-02-08 17:41 by Mark.Shannon, last changed 2012-03-05 15:04 by python-dev. This issue is now closed.

Files
File name Uploaded Description Edit
remove_f_yieldfrom.patch Mark.Shannon, 2012-02-08 17:41 review
Messages (3)
msg152895 - (view) Author: Mark Shannon (Mark.Shannon) * Date: 2012-02-08 17:41
The f_yieldfrom field should not be visible at Python level, it is an internal implementation detail.

Patch attached.
msg152903 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2012-02-08 19:40
I agree, FWIW.
msg154951 - (view) Author: Roundup Robot (python-dev) Date: 2012-03-05 15:04
New changeset 84620bca0e35 by Benjamin Peterson in branch 'default':
remove f_yieldfrom access from Python (closes #13970)
http://hg.python.org/cpython/rev/84620bca0e35
History
Date User Action Args
2012-03-05 15:04:07python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg154951

resolution: fixed
stage: patch review -> committed/rejected
2012-02-16 05:07:14meador.ingesetnosy: + meador.inge
2012-02-08 19:40:22benjamin.petersonsetnosy: + benjamin.peterson
messages: + msg152903
2012-02-08 19:31:41pitrousetnosy: + ncoghlan

components: + Interpreter Core
stage: patch review
2012-02-08 17:41:57Mark.Shannoncreate