Is this frame waiting on the GIL?
(self)
| 1842 | return False |
| 1843 | |
| 1844 | def is_waiting_for_gil(self): |
| 1845 | '''Is this frame waiting on the GIL?''' |
| 1846 | # This assumes the _POSIX_THREADS version of Python/ceval_gil.c: |
| 1847 | name = self._gdbframe.name() |
| 1848 | if name: |
| 1849 | return (name == 'take_gil') |
| 1850 | |
| 1851 | def is_gc_collect(self): |
| 1852 | '''Is this frame a collector within the garbage-collector?''' |
no test coverage detected