https://github.com/python/cpython/commit/c025576a8f0822ec42527e80eb7a02700316d100 commit: c025576a8f0822ec42527e80eb7a02700316d100 branch: main author: Donghoon Nam <[email protected]> committer: ZeroIntensity <[email protected]> date: 2025-09-17T04:21:52-04:00 summary:
gh-138966: Add description for `gi_suspended` attribute (GH-139008) files: M Doc/library/inspect.rst diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst index 7f2930ccd5523a..2b3b294ff33a64 100644 --- a/Doc/library/inspect.rst +++ b/Doc/library/inspect.rst @@ -253,6 +253,9 @@ attributes (see :ref:`import-mod-attrs` for module attributes): +-----------------+-------------------+---------------------------+ | | gi_running | is the generator running? | +-----------------+-------------------+---------------------------+ +| | gi_suspended | is the generator | +| | | suspended? | ++-----------------+-------------------+---------------------------+ | | gi_code | code | +-----------------+-------------------+---------------------------+ | | gi_yieldfrom | object being iterated by | _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
