diff options
| author | bd <bdunahu@operationnull.com> | 2025-07-29 23:06:37 -0400 |
|---|---|---|
| committer | bd <bdunahu@operationnull.com> | 2025-07-29 23:06:37 -0400 |
| commit | 2dc8346087cfab9e5de85573cf54d454d1cae82d (patch) | |
| tree | 3405a537fdfaff40b337962c6cc36983567b40d9 /aergia/aergia.py | |
| parent | 003a949377df6b639d70aacf9f452608a0b0e7a8 (diff) | |
Update `_get_deepest_traceable_frame' comment again
Diffstat (limited to 'aergia/aergia.py')
| -rwxr-xr-x | aergia/aergia.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/aergia/aergia.py b/aergia/aergia.py index 501a3ae..7657636 100755 --- a/aergia/aergia.py +++ b/aergia/aergia.py @@ -302,9 +302,9 @@ class Aergia(object): def _get_deepest_traceable_frame(coro): '''Get the deepest frame of coro we care to trace. Luckily for us, coroutines keep track of the coroutine object which - they are waiting on (cr_await). We simply need to trace that down as far - as possible to get the actual line we are waiting on. - Note that it cannot be the case that a task is not suspended in a frame + they are waiting on (cr_await). We simply need to trace that down as + far as possible to get the actual line we are waiting on. + Note that it cannot be the case that a task is suspended in a frame that does not belong to a coroutine, asyncio is very particular about that! |
