This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients giampaolo.rodola, gvanrossum, neologix, vstinner
Date 2013-11-01.01:36:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1383269804.3.0.264747393931.issue19467@psf.upfronthosting.co.za>
In-reply-to
Content
The asyncore module is old and has an efficient design: it is not possible to use modern selectors like epoll() or kqueue() before asyncore.poll() function has to recreate a selector at each call. See a better explanation of its author: msg196995.

The asyncio has a better abstraction, a better design and has pluggable eventloops and selectors.

I suggest to modify asyncore users in the documentation to the new asyncio module. It would be better to explain how to port the code, but I don't know asyncio enough to explain that.

I don't know what to do with asynchat.
History
Date User Action Args
2013-11-01 01:36:44vstinnersetrecipients: + vstinner, gvanrossum, giampaolo.rodola, neologix
2013-11-01 01:36:44vstinnersetmessageid: <1383269804.3.0.264747393931.issue19467@psf.upfronthosting.co.za>
2013-11-01 01:36:44vstinnerlinkissue19467 messages
2013-11-01 01:36:43vstinnercreate