https://github.com/python/cpython/commit/b6d8ec39bd548b9e499597ac23925666c3005879 commit: b6d8ec39bd548b9e499597ac23925666c3005879 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: ZeroIntensity <[email protected]> date: 2025-09-17T04:42:13-04:00 summary:
[3.13] gh-138966: Add description for `gi_suspended` attribute (GH-139008) (GH-139019) gh-138966: Add description for `gi_suspended` attribute (GH-139008) (cherry picked from commit c025576a8f0822ec42527e80eb7a02700316d100) Co-authored-by: Donghoon Nam <[email protected]> files: M Doc/library/inspect.rst diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst index 7ed39ae2fec3c3..a6107dea0f938b 100644 --- a/Doc/library/inspect.rst +++ b/Doc/library/inspect.rst @@ -222,6 +222,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]
