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
Next Next commit
mark test_threading
  • Loading branch information
youknowone committed Dec 23, 2025
commit d919fe516e65bd259d05295773d15859d597e7c7
2 changes: 2 additions & 0 deletions Lib/test/test_threading.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,7 @@ def f(mutex):

# PyThreadState_SetAsyncExc() is a CPython-only gimmick, not (currently)
# exposed at the Python level. This test relies on ctypes to get at it.
@unittest.skip("TODO: RUSTPYTHON; expects @cpython_only")
def test_PyThreadState_SetAsyncExc(self):
ctypes = import_module("ctypes")

Expand Down Expand Up @@ -332,6 +333,7 @@ def fail_new_thread(*args):
finally:
threading._start_new_thread = _start_new_thread

@unittest.skip("TODO: RUSTPYTHON; ctypes.pythonapi is not supported")
def test_finalize_running_thread(self):
# Issue 1402: the PyGILState_Ensure / _Release functions may be called
# very late on python exit: on deallocation of a running thread for
Expand Down