diff --git a/trollius/selectors.py b/trollius/selectors.py index cf0475de..2b24e5e0 100644 --- a/trollius/selectors.py +++ b/trollius/selectors.py @@ -309,7 +309,8 @@ def _select(self, r, w, _, timeout=None): r, w, x = select.select(r, w, w, timeout) return r, w + x, [] else: - _select = select.select + def _select(self, r, w, x, timeout=None): + return select.select(r, w, x, timeout) def select(self, timeout=None): timeout = None if timeout is None else max(timeout, 0)