Python: Improve exception handling for the coroutine passed to slint.run_event_loop()
Some checks are pending
autofix.ci / format_fix (push) Waiting to run
autofix.ci / lint_typecheck (push) Waiting to run
CI / node_test (macos-14) (push) Blocked by required conditions
CI / files-changed (push) Waiting to run
CI / build_and_test (--exclude bevy-example, ubuntu-22.04, 1.85) (push) Blocked by required conditions
CI / build_and_test (--exclude ffmpeg --exclude gstreamer-player, --exclude bevy-example, windows-2022, 1.85) (push) Blocked by required conditions
CI / build_and_test (--exclude ffmpeg --exclude gstreamer-player, macos-14, stable) (push) Blocked by required conditions
CI / build_and_test (--exclude ffmpeg --exclude gstreamer-player, windows-2022, beta) (push) Blocked by required conditions
CI / build_and_test (--exclude ffmpeg --exclude gstreamer-player, windows-2022, stable) (push) Blocked by required conditions
CI / build_and_test (ubuntu-22.04, nightly) (push) Blocked by required conditions
CI / node_test (ubuntu-22.04) (push) Blocked by required conditions
CI / node_test (windows-2022) (push) Blocked by required conditions
CI / python_test (macos-14) (push) Blocked by required conditions
CI / python_test (ubuntu-22.04) (push) Blocked by required conditions
CI / python_test (windows-2022) (push) Blocked by required conditions
CI / cpp_test_driver (macos-13) (push) Blocked by required conditions
CI / cpp_test_driver (ubuntu-22.04) (push) Blocked by required conditions
CI / cpp_test_driver (windows-2022) (push) Blocked by required conditions
CI / cpp_cmake (macos-14, 1.85) (push) Blocked by required conditions
CI / cpp_cmake (windows-2022, nightly) (push) Blocked by required conditions
CI / cpp_package_test (push) Blocked by required conditions
CI / mcu (stm32h735g, thumbv7em-none-eabihf) (push) Blocked by required conditions
CI / docs (push) Blocked by required conditions
CI / wasm (push) Blocked by required conditions
CI / cpp_cmake (ubuntu-22.04, stable) (push) Blocked by required conditions
CI / vsce_build_test (push) Blocked by required conditions
CI / mcu (pico-st7789, thumbv6m-none-eabi) (push) Blocked by required conditions
CI / mcu-embassy (push) Blocked by required conditions
CI / ffi_32bit_build (push) Blocked by required conditions
CI / wasm_demo (push) Blocked by required conditions
CI / tree-sitter (push) Blocked by required conditions
CI / mcu (pico2-st7789, thumbv8m.main-none-eabihf) (push) Blocked by required conditions
CI / updater_test (0.3.0) (push) Blocked by required conditions
CI / fmt_test (push) Blocked by required conditions
CI / esp-idf-quick (push) Blocked by required conditions
CI / android (push) Blocked by required conditions
CI / miri (push) Blocked by required conditions
CI / test-figma-inspector (push) Blocked by required conditions

If an exception is thrown, propagate it. Otherwise it becomes difficult to debug...

cc #4137
This commit is contained in:
Simon Hausmann 2025-09-19 09:39:38 +02:00 committed by Simon Hausmann
parent a29c22a07b
commit 797f8f6469
3 changed files with 21 additions and 5 deletions

View file

@ -339,8 +339,6 @@ For the common use case of interacting with REST APIs, we recommend the [`aiohtt
### Known Limitations
- Pipes and sub-processes are only supported on Unix-like platforms.
- Exceptions thrown in the coroutine passed to `slint.run_event_loop()` don't cause the loop to terminate. This behaviour may
change in a future release.
## Third-Party Licenses

View file

@ -464,10 +464,20 @@ def run_event_loop(
async def run_inner() -> None:
global quit_event
loop = typing.cast(SlintEventLoop, asyncio.get_event_loop())
if main_coro:
loop.create_task(main_coro)
await quit_event.wait()
tasks: typing.List[asyncio.Task[typing.Any]] = [
asyncio.ensure_future(quit_event.wait(), loop=loop)
]
main_task = None
if main_coro:
main_task = loop.create_task(main_coro)
tasks.append(main_task)
done, pending = await asyncio.wait(tasks, return_when=asyncio.FIRST_COMPLETED)
if main_task is not None and main_task in done:
main_task.result() # propagate exception if thrown
global quit_event
quit_event = asyncio.Event()

View file

@ -207,3 +207,11 @@ def test_subprocess() -> None:
slint.run_event_loop(launch_process(exception_check))
if len(exception_check) > 0:
raise exception_check[0]
def test_exception_thrown() -> None:
async def throws() -> None:
raise RuntimeError("Boo")
with pytest.raises(RuntimeError, match="Boo"):
slint.run_event_loop(throws())