|
| 1 | +From 7e2d93f30b157e414924c32232bb748c8f66c828 Mon Sep 17 00:00:00 2001 |
| 2 | +From: "J. Nick Koston" < [email protected]> |
| 3 | +Date: Tue, 12 Dec 2023 14:29:21 -1000 |
| 4 | +Subject: [PATCH] gh-112989: asyncio: Reduce overhead to connect sockets with |
| 5 | + SelectorEventLoop (#112991) |
| 6 | + |
| 7 | +_ensure_fd_no_transport had a KeyError in the success path |
| 8 | +--- |
| 9 | + Lib/asyncio/selector_events.py | 14 +++++--------- |
| 10 | + .../2023-12-12-05-48-17.gh-issue-112989.ZAa_eq.rst | 1 + |
| 11 | + 2 files changed, 6 insertions(+), 9 deletions(-) |
| 12 | + create mode 100644 Misc/NEWS.d/next/Library/2023-12-12-05-48-17.gh-issue-112989.ZAa_eq.rst |
| 13 | + |
| 14 | +diff --git a/Lib/asyncio/selector_events.py b/Lib/asyncio/selector_events.py |
| 15 | +index d521b4e2e2..dcd5e0aa34 100644 |
| 16 | +--- a/Lib/asyncio/selector_events.py |
| 17 | ++++ b/Lib/asyncio/selector_events.py |
| 18 | +@@ -261,15 +261,11 @@ def _ensure_fd_no_transport(self, fd): |
| 19 | + except (AttributeError, TypeError, ValueError): |
| 20 | + # This code matches selectors._fileobj_to_fd function. |
| 21 | + raise ValueError(f"Invalid file object: {fd!r}") from None |
| 22 | +- try: |
| 23 | +- transport = self._transports[fileno] |
| 24 | +- except KeyError: |
| 25 | +- pass |
| 26 | +- else: |
| 27 | +- if not transport.is_closing(): |
| 28 | +- raise RuntimeError( |
| 29 | +- f'File descriptor {fd!r} is used by transport ' |
| 30 | +- f'{transport!r}') |
| 31 | ++ transport = self._transports.get(fileno) |
| 32 | ++ if transport and not transport.is_closing(): |
| 33 | ++ raise RuntimeError( |
| 34 | ++ f'File descriptor {fd!r} is used by transport ' |
| 35 | ++ f'{transport!r}') |
| 36 | + |
| 37 | + def _add_reader(self, fd, callback, *args): |
| 38 | + self._check_closed() |
| 39 | + |
0 commit comments