From f0c647ac8426aef5a42f7cb6c9d1d0916c99bf58 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sun, 1 Dec 2024 11:04:14 -0600 Subject: [PATCH] Update aiohttp/web_protocol.py --- aiohttp/web_protocol.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/aiohttp/web_protocol.py b/aiohttp/web_protocol.py index 8987a329ad6..0bffc849817 100644 --- a/aiohttp/web_protocol.py +++ b/aiohttp/web_protocol.py @@ -212,9 +212,7 @@ def __init__( ): super().__init__(loop) - # _request_count is the number of request processed by the handler - # A new handler is created for each connection, so it is the number - # of requests processed by the connection. + # _request_count is the number of requests processed with the same connection. self._request_count = 0 self._keepalive = False self._current_request: Optional[_Request] = None