summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-11-19 02:35:57 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-11-19 02:35:57 +0100
commit9a21a7c342ad64f87fbdeba2008001249f75e197 (patch)
tree0502f2df8d4e7a5ed54c01f3772e8d66079e7e98 /README
parent6d4367e018173557ec11de6805b4800c240ad1ba (diff)
downloadaioeventlet-9a21a7c342ad64f87fbdeba2008001249f75e197.tar.gz
update FIXMEs
Diffstat (limited to 'README')
-rw-r--r--README4
1 files changed, 4 insertions, 0 deletions
diff --git a/README b/README
index c702e8a..ebd26af 100644
--- a/README
+++ b/README
@@ -25,3 +25,7 @@ Todo:
* Test with Python 2 and 3
* Test with Trollius and asyncio
* Glue to ease debug: keep traceback between Handle, coroutine and greenthread
+* 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?