diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-10-03 05:38:07 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-10-03 05:38:07 (GMT) |
commit | a02e18a43f61543c911c82698d3cf44c8c11a0c2 (patch) | |
tree | 9a79c81d15cd6e723c4215d7c12b1ea52024ca07 /Misc | |
parent | d470527aecebd5982cda4d6e6fcbeebeca33976c (diff) | |
download | cpython-a02e18a43f61543c911c82698d3cf44c8c11a0c2.zip cpython-a02e18a43f61543c911c82698d3cf44c8c11a0c2.tar.gz cpython-a02e18a43f61543c911c82698d3cf44c8c11a0c2.tar.bz2 |
Issue #25232: Fix CGIRequestHandler's splitting of URL query
Patch from Xiang Zhang.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -1531,6 +1531,7 @@ Thomas Wouters Daniel Wozniak Heiko Wundram Doug Wyatt +Xiang Zhang Robert Xiao Florent Xicluna Hirokazu Yamamoto @@ -90,6 +90,9 @@ Core and Builtins 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 and the dict keyword arguments. |