From 76d034e9adc228896d79f63f87fbef02399a707b Mon Sep 17 00:00:00 2001 From: Anandesh Sharma Date: Fri, 27 Feb 2026 04:07:37 +0530 Subject: [PATCH] =?UTF-8?q?Fix=20grammar=20in=20whatsnew/3.15:=20"allows?= =?UTF-8?q?=20to"=20=E2=86=92=20"allows=20distinguishing"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit "Allows to " is grammatically incorrect; "allow" requires either a gerund ("allows distinguishing") or an object + infinitive ("allows one to distinguish"). Co-Authored-By: Claude Opus 4.6 --- Doc/whatsnew/3.15.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/whatsnew/3.15.rst b/Doc/whatsnew/3.15.rst index 37ebdfee7915fe..7fdaa7d3c22d3c 100644 --- a/Doc/whatsnew/3.15.rst +++ b/Doc/whatsnew/3.15.rst @@ -1164,7 +1164,7 @@ urllib.parse :func:`~urllib.parse.urlparse` and :func:`~urllib.parse.urldefrag` functions. Add the *keep_empty* parameter to :func:`~urllib.parse.urlunsplit` and :func:`~urllib.parse.urlunparse` functions. - This allows to distinguish between empty and not defined URI components + This allows distinguishing between empty and not defined URI components and preserve empty components. (Contributed by Serhiy Storchaka in :gh:`67041`.)