Issue #25232: Fix CGIRequestHandler's splitting of URL query
Patch from Xiang Zhang.
diff --git a/Misc/ACKS b/Misc/ACKS
index bdbb802..34f0a0a 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1505,6 +1505,7 @@
Daniel Wozniak
Heiko Wundram
Doug Wyatt
+Xiang Zhang
Robert Xiao
Florent Xicluna
Hirokazu Yamamoto
diff --git a/Misc/NEWS b/Misc/NEWS
index 0494fd1..f6e29b6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -43,6 +43,9 @@
Library
-------
+- Issue #25232: Fix CGIRequestHandler to split the query from the URL at the
+ first question mark (?) rather than the last. Patch from Xiang Zhang.
+
- Issue #22958: Constructor and update method of weakref.WeakValueDictionary
now accept the self keyword argument.