Jason Madden
2018-06-08 01:01:15 UTC
Does gevent 1.1.0 base on asyncore?
https://docs.python.org/2.7/library/asyncore.html?highlight=async#module-asyncore
No version of gevent has ever been based on asyncore. In both Python 2 and Python 3, asyncore uses the `select` module to roll its own limited event loop. gevent has long been based on the libev event loop, recently allowed the libuv event loop, and in the distant past used libevent.https://docs.python.org/2.7/library/asyncore.html?highlight=async#module-asyncore
Monkey-patching can allow asyncore to be based on gevent, but not vice versa.
--
You received this message because you are subscribed to the Google Groups "gevent: coroutine-based Python network library" group.
To unsubscribe from this group and stop receiving emails from it, send an email to gevent+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
You received this message because you are subscribed to the Google Groups "gevent: coroutine-based Python network library" group.
To unsubscribe from this group and stop receiving emails from it, send an email to gevent+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.