[issue21040] socketserver: use selectors module

2014-04-29 Thread Charles-François Natali
Changes by Charles-François Natali : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21040] socketserver: use selectors module

2014-04-29 Thread Antoine Pitrou
Antoine Pitrou added the comment: Shouldn't this issue be closed? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue21040] socketserver: use selectors module

2014-03-25 Thread Charles-François Natali
Changes by Charles-François Natali : -- resolution: -> fixed stage: patch review -> committed/rejected ___ Python tracker ___ ___ Pyt

[issue21040] socketserver: use selectors module

2014-03-24 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3047db8f6126 by Charles-François Natali in branch 'default': Issue #21040: socketserver: Use the selectors module. http://hg.python.org/cpython/rev/3047db8f6126 -- nosy: +python-dev ___ Python tracker

[issue21040] socketserver: use selectors module

2014-03-24 Thread STINNER Victor
STINNER Victor added the comment: I sent a review on Rietveld. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue21040] socketserver: use selectors module

2014-03-23 Thread Charles-François Natali
Changes by Charles-François Natali : Added file: http://bugs.python.org/file34593/socketserver_use_selectors-1.diff ___ Python tracker ___ ___

[issue21040] socketserver: use selectors module

2014-03-23 Thread Charles-François Natali
New submission from Charles-François Natali: This patch updates the socketserver module to use selectors. It's simpler, will use poll() when available, and also fixes a bug where the timeout would not be recomputed upon EINTR. Note that I removed an EINTR-handling test from test_socketserver be