Remove extra spaces

This commit is contained in:
ShaharNaveh
2025-07-26 17:47:53 +02:00
parent 06196fa4f4
commit cbe975818e

View File

@@ -821,10 +821,10 @@ def gc_collect():
def disable_gc():
# TODO: RUSTPYTHON; GC is not supported yet
try:
yield
yield
finally:
pass
return
return
import gc
have_gc = gc.isenabled()
@@ -839,10 +839,10 @@ def disable_gc():
def gc_threshold(*args):
# TODO: RUSTPYTHON; GC is not supported yet
try:
yield
yield
finally:
pass
return
return
import gc
old_threshold = gc.get_threshold()