From 168483e73c48d9ed49ab69cf559a758c0acba3b8 Mon Sep 17 00:00:00 2001 From: bhubache Date: Fri, 7 Nov 2025 18:28:35 -0600 Subject: [PATCH 1/3] Fix typo in contextvars asyncio support docs --- Doc/library/contextvars.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/contextvars.rst b/Doc/library/contextvars.rst index 57580ce026e96a..951b3c58ee5b33 100644 --- a/Doc/library/contextvars.rst +++ b/Doc/library/contextvars.rst @@ -313,7 +313,7 @@ client:: addr = writer.transport.get_extra_info('socket').getpeername() client_addr_var.set(addr) - # In any code that we call is now possible to get + # In any code that we call it is now possible to get # client's address by calling 'client_addr_var.get()'. while True: From e0313eaac7653c3cf1c3ef4dcdf702ab6f97c144 Mon Sep 17 00:00:00 2001 From: bhubache Date: Fri, 7 Nov 2025 18:29:14 -0600 Subject: [PATCH 2/3] Fix grammar in contextvars asyncio support docs --- Doc/library/contextvars.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/contextvars.rst b/Doc/library/contextvars.rst index 951b3c58ee5b33..8fdfb7b9145d6e 100644 --- a/Doc/library/contextvars.rst +++ b/Doc/library/contextvars.rst @@ -313,7 +313,7 @@ client:: addr = writer.transport.get_extra_info('socket').getpeername() client_addr_var.set(addr) - # In any code that we call it is now possible to get + # In any code that we call it is now possible to get the # client's address by calling 'client_addr_var.get()'. while True: From 443fc7be69557c2670ba5cca985a21aab500d27a Mon Sep 17 00:00:00 2001 From: Kumar Aditya Date: Sat, 8 Nov 2025 14:31:56 +0530 Subject: [PATCH 3/3] Apply suggestion from @kumaraditya303 --- Doc/library/contextvars.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/contextvars.rst b/Doc/library/contextvars.rst index 8fdfb7b9145d6e..b218468a084db1 100644 --- a/Doc/library/contextvars.rst +++ b/Doc/library/contextvars.rst @@ -313,7 +313,7 @@ client:: addr = writer.transport.get_extra_info('socket').getpeername() client_addr_var.set(addr) - # In any code that we call it is now possible to get the + # In any code that we call, it is now possible to get the # client's address by calling 'client_addr_var.get()'. while True: