summaryrefslogtreecommitdiff
path: root/Lib/asyncio
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2014-05-06 14:42:40 -0700
committerGuido van Rossum <guido@python.org>2014-05-06 14:42:40 -0700
commitaf7feddab6ff80c5a66a2d97f9594c59f68b0139 (patch)
tree2a4afdd9ffdbe7ca6748b96d47588cc761d0c153 /Lib/asyncio
parentdeb3c89b0ea5da8da9df490f9abff2c54a0aeef6 (diff)
downloadcpython-af7feddab6ff80c5a66a2d97f9594c59f68b0139.tar.gz
asyncio: Fix the second half of issue #21447: race in _write_to_self().
Diffstat (limited to 'Lib/asyncio')
-rw-r--r--Lib/asyncio/selector_events.py15
1 files changed, 11 insertions, 4 deletions
diff --git a/Lib/asyncio/selector_events.py b/Lib/asyncio/selector_events.py
index 367c5fbe3f..c7df8d8dd0 100644
--- a/Lib/asyncio/selector_events.py
+++ b/Lib/asyncio/selector_events.py
@@ -87,10 +87,17 @@ class BaseSelectorEventLoop(base_events.BaseEventLoop):
pass
def _write_to_self(self):
- try:
- self._csock.send(b'x')
- except (BlockingIOError, InterruptedError):
- pass
+ # This may be called from a different thread, possibly after
+ # _close_self_pipe() has been called or even while it is
+ # running. Guard for self._csock being None or closed. When
+ # a socket is closed, send() raises OSError (with errno set to
+ # EBADF, but let's not rely on the exact error code).
+ csock = self._csock
+ if csock is not None:
+ try:
+ csock.send(b'x')
+ except OSError:
+ pass
def _start_serving(self, protocol_factory, sock,
sslcontext=None, server=None):