mirror of
https://github.com/python/cpython.git
synced 2025-08-25 11:15:02 +00:00
GH-108362: Revert "GH-108362: Incremental GC implementation (GH-108038)" (#115132)
Revert "GH-108362: Incremental GC implementation (GH-108038)"
This reverts commit 36518e69d7
.
This commit is contained in:
parent
d0322fdf2c
commit
8a3c499ffe
13 changed files with 446 additions and 701 deletions
|
@ -1753,11 +1753,8 @@ class Frame(object):
|
|||
return (name == 'take_gil')
|
||||
|
||||
def is_gc_collect(self):
|
||||
'''Is this frame a collector within the garbage-collector?'''
|
||||
return self._gdbframe.name() in (
|
||||
'collect', 'gc_collect_full', 'gc_collect_main',
|
||||
'gc_collect_young', 'gc_collect_increment'
|
||||
)
|
||||
'''Is this frame gc_collect_main() within the garbage-collector?'''
|
||||
return self._gdbframe.name() in ('collect', 'gc_collect_main')
|
||||
|
||||
def get_pyop(self):
|
||||
try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue