summaryrefslogtreecommitdiff
path: root/aergia
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-07-21 13:25:56 -0600
committerbd <bdunahu@operationnull.com>2025-07-21 13:25:56 -0600
commit487c77a96504c0178581a7a4bb7e9cd66783548f (patch)
tree67bb104ce5fe7238546001a47a85b8aaafc042a1 /aergia
parent83e88319b72df01fa70e6bf3a020ab745cdef661 (diff)
Update comments reflecting on asyncio.gather and task groups
Diffstat (limited to 'aergia')
-rwxr-xr-xaergia/aergia.py3
1 files changed, 1 insertions, 2 deletions
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