We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9c34a5 commit cc9e9abCopy full SHA for cc9e9ab
1 file changed
Lib/profiling/sampling/pstats_collector.py
@@ -43,7 +43,7 @@ def _process_frames(self, frames):
43
def collect(self, stack_frames):
44
if stack_frames and hasattr(stack_frames[0], "awaited_by"):
45
# Async frame processing
46
- for frames, thread_id, _depth in self._iter_async_frames(stack_frames):
+ for frames, thread_id in self._iter_async_frames(stack_frames):
47
self._process_frames(frames)
48
else:
49
# Regular frame processing
0 commit comments