single: f_locals (frame attribute)
single: f_lasti (frame attribute)
single: f_builtins (frame attribute)
+ single: f_generator (frame attribute)
Special read-only attributes
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
(this is an index into the :term:`bytecode` string of the
:ref:`code object <code-objects>`)
+ * - .. attribute:: frame.f_generator
+ - The :term:`generator` or :term:`coroutine` object that owns this frame,
+ or ``None`` if the frame is a normal function.
+
+ .. versionadded:: 3.14
+
.. index::
single: f_trace (frame attribute)
single: f_trace_lines (frame attribute)