[Python-checkins] cpython: remove f_yieldfrom access from Python (closes #13970)
benjamin.peterson
python-checkins at python.org
Mon Mar 5 16:04:06 CET 2012
http://hg.python.org/cpython/rev/84620bca0e35
changeset: 75421:84620bca0e35
user: Benjamin Peterson <benjamin at python.org>
date: Mon Mar 05 09:03:51 2012 -0600
summary:
remove f_yieldfrom access from Python (closes #13970)
files:
Objects/frameobject.c | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/Objects/frameobject.c b/Objects/frameobject.c
--- a/Objects/frameobject.c
+++ b/Objects/frameobject.c
@@ -20,7 +20,6 @@
{"f_builtins", T_OBJECT, OFF(f_builtins), READONLY},
{"f_globals", T_OBJECT, OFF(f_globals), READONLY},
{"f_lasti", T_INT, OFF(f_lasti), READONLY},
- {"f_yieldfrom", T_OBJECT, OFF(f_yieldfrom), READONLY},
{NULL} /* Sentinel */
};
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list