Is this frame a collector within the garbage-collector?
(self)
| 1849 | return (name == 'take_gil') |
| 1850 | |
| 1851 | def is_gc_collect(self): |
| 1852 | '''Is this frame a collector within the garbage-collector?''' |
| 1853 | return self._gdbframe.name() in ( |
| 1854 | 'collect', 'gc_collect_full', 'gc_collect_main', |
| 1855 | 'gc_collect_young', 'gc_collect_increment', |
| 1856 | ) |
| 1857 | |
| 1858 | def get_pyop(self): |
| 1859 | try: |
no test coverage detected