summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-11-21 03:18:59 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-11-21 03:18:59 +0100
commit3df5acc6a83711473c45d4ec56b27b2daeb89bd6 (patch)
tree6cdfb492bc4a99cc215fdbed6279916b8ddb74d5 /README
parent19391bbc96a7de41e082d54200b16e3f500335db (diff)
downloadaioeventlet-3df5acc6a83711473c45d4ec56b27b2daeb89bd6.tar.gz
call_soon() now detects automatically switch to call_soon_threadsafe() if
selector.select() is running. Similar change for call_at(): reschedule the call with call_soon_threadsafe() if selector.select() is running.
Diffstat (limited to 'README')
-rw-r--r--README9
1 files changed, 0 insertions, 9 deletions
diff --git a/README b/README
index 000d705..27ea8c9 100644
--- a/README
+++ b/README
@@ -72,15 +72,6 @@ Hello World::
loop.close()
-Eventlet and aiogreen
----------------------
-
-Using the event loop from greenthreads is not safe: calls to the event loop
-must be passed to ``call_soon_threadsafe()``. Example to stop the event loop:
-
- eventlet.spawn(loop.call_soon_threadsafe, loop.stop)
-
-
Installation
============