From e9ba8f81934d798b383717a7a8d9cf6d4fd41ae1 Mon Sep 17 00:00:00 2001 From: Almar Klein Date: Mon, 9 Dec 2024 16:51:55 +0100 Subject: [PATCH] Added a little comment for Mark --- docs/start.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/start.rst b/docs/start.rst index 3af307a..609f72d 100644 --- a/docs/start.rst +++ b/docs/start.rst @@ -86,6 +86,9 @@ We recommend importing these from :doc:`rendercanvas.utils.asyncs On the other hand, if you know your code always runs on the asyncio loop, you can fully make use of ``asyncio``. Dito for Trio. +If you use Qt and get nervous from async code, no worries, when running on Qt, ``asyncio`` is not even imported. You can regard most async functions +as syntactic sugar for pieces of code chained with ``call_later``. That's more or less how our async adapter works :) + Freezing apps -------------