Thanks to visit codestin.com Credit goes to github.com
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 dff1ad5 commit b9ee4afCopy full SHA for b9ee4af
1 file changed
Tools/gdb/libpython.py
@@ -1605,8 +1605,8 @@ def is_waiting_for_gil(self):
1605
return (name == 'take_gil')
1606
1607
def is_gc_collect(self):
1608
- '''Is this frame "collect" within the garbage-collector?'''
1609
- return self._gdbframe.name() == 'collect'
+ '''Is this frame gc_collect_main() within the garbage-collector?'''
+ return self._gdbframe.name() in ('collect', 'gc_collect_main')
1610
1611
def get_pyop(self):
1612
try:
0 commit comments