Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove extra spaces
  • Loading branch information
ShaharNaveh committed Jul 26, 2025
commit cbe975818e42db11843e634d25b139eea6be5953
8 changes: 4 additions & 4 deletions Lib/test/support/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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()
Expand Down