From 487c77a96504c0178581a7a4bb7e9cd66783548f Mon Sep 17 00:00:00 2001 From: bd Date: Mon, 21 Jul 2025 13:25:56 -0600 Subject: Update comments reflecting on asyncio.gather and task groups --- aergia/aergia.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'aergia') diff --git a/aergia/aergia.py b/aergia/aergia.py index 83cf0fa..b10c82b 100755 --- a/aergia/aergia.py +++ b/aergia/aergia.py @@ -251,7 +251,6 @@ class Aergia(object): ret = None while curr: frame = getattr(curr, 'cr_frame', None) - # print(frame) if frame and Aergia.should_trace(frame.f_code.co_filename): ret = frame curr = getattr(curr, 'cr_await', None) @@ -260,7 +259,7 @@ class Aergia(object): @staticmethod def should_trace(filename): '''Returns FALSE if filename is uninteresting to the user. - Don't depend on this.''' + Don't depend on this. It's good enough for testing.''' # FIXME Assume GuixSD. Makes filtering easy if '/gnu/store' in filename: return False -- cgit v1.2.3