Skip to content

Commit 9533ab9

Browse files
committed
Address remaining review by Irit
1 parent 61b2b7b commit 9533ab9

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

Doc/library/asyncio-graph.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ and debuggers.
2525
Print the async call graph for the current task or the provided
2626
:class:`Task` or :class:`Future`.
2727

28-
This function prints entries starting from the currently executing frame,
29-
i.e. the top frame, and going down towards the invocation point.
28+
This function prints entries starting from the top frame and going
3029

3130
The function receives an optional *future* argument.
3231
If not passed, the current running task will be used.

Doc/library/inspect.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,12 @@ attributes (see :ref:`import-mod-attrs` for module attributes):
150150
| | f_locals | local namespace seen by |
151151
| | | this frame |
152152
+-----------------+-------------------+---------------------------+
153+
| | f_generator | returns the generator or |
154+
| | | coroutine object that |
155+
| | | owns this frame, or |
156+
| | | ``None`` if the frame is |
157+
| | | of a regular function |
158+
+-----------------+-------------------+---------------------------+
153159
| | f_trace | tracing function for this |
154160
| | | frame, or ``None`` |
155161
+-----------------+-------------------+---------------------------+
@@ -162,12 +168,6 @@ attributes (see :ref:`import-mod-attrs` for module attributes):
162168
| | | per-opcode events are |
163169
| | | requested |
164170
+-----------------+-------------------+---------------------------+
165-
| | f_generator | returns the generator or |
166-
| | | coroutine object that |
167-
| | | owns this frame, or |
168-
| | | ``None`` if the frame is |
169-
| | | of a regular function |
170-
+-----------------+-------------------+---------------------------+
171171
| | clear() | used to clear all |
172172
| | | references to local |
173173
| | | variables |

0 commit comments

Comments
 (0)