mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
Remove extra spaces
This commit is contained in:
8
Lib/test/support/__init__.py
vendored
8
Lib/test/support/__init__.py
vendored
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user