summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-11-19 23:14:59 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-11-19 23:14:59 +0100
commit177807ea66794a151974a6487bc9a66329255d14 (patch)
tree129f2fb6d5bb557d9ffd9b6b29fbacd8800387fa /README
parentfc90935a5e1f243a95c401c228cded77cdb9d064 (diff)
downloadaioeventlet-177807ea66794a151974a6487bc9a66329255d14.tar.gz
If eventlet monkey patched the thread module, use eventlet.tpool as the default
executor
Diffstat (limited to 'README')
-rw-r--r--README6
1 files changed, 1 insertions, 5 deletions
diff --git a/README b/README
index dd5e70b..12704e2 100644
--- a/README
+++ b/README
@@ -77,10 +77,6 @@ Not supported (yet)
To do
=====
-* Support eventlet without monkey-patching
+* Support eventlet with monkey-patching
* Glue to ease debug: keep traceback between Handle, coroutine and greenthread.
Is it even possible?
-* run_in_executor(): use eventlet.tpool as the default executor?
- It avoids the dependency to concurrent.futures. aiogreen is written as a
- temporary solution to switch from eventlet to asyncio. So it may be better to
- use directly concurrent.futures to reduce the usage of eventlet?