From ce4fa0ee35124ee6657e8d1431e9e3c9ce071101 Mon Sep 17 00:00:00 2001 From: nocturn9x Date: Sun, 26 Dec 2021 15:54:30 +0100 Subject: [PATCH] Updated README --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 5a48090..26499c1 100644 --- a/README.md +++ b/README.md @@ -36,9 +36,7 @@ asyncevents is a small library to help developers perform asynchronous event han decent machinery to perform roughly what asyncevent does - Does not support using any other loop than the currently running one because of some subtleties of modern asyncio wrappers like `asyncio.run()` which creates its own event loop internally (_Thanks, asyncio_) -- Exceptions are kinda finicky in non-blocking mode due to how `asyncio.gather` works: only the first exception - in a group of handlers is properly raised and log messages might get doubled. Also, exception logging and propagation - is delayed until you `await wait("some_event")` so be careful + ## Why? This library exists because the current alternatives either suck, lack features or are inspired by other languages'