summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-12-17 04:48:45 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2010-12-17 04:48:45 (GMT)
commitdca5b862338034460e060cedee8ba788073e20b3 (patch)
treed8ddee086be76d1b11fb371a778d518a842b0d55 /Misc
parentb25a791802a1915097e02bfba04e27a41ae55ebf (diff)
downloadcpython-dca5b862338034460e060cedee8ba788073e20b3.zip
cpython-dca5b862338034460e060cedee8ba788073e20b3.tar.gz
cpython-dca5b862338034460e060cedee8ba788073e20b3.tar.bz2
Fix Issue9721 - urljoin behavior when the relative url starts with ';'
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 19611dd..1fce06c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -19,6 +19,8 @@ Core and Builtins
Library
-------
+- Issue #9721: Fix the behavior of urljoin when the relative url starts with a
+ ';' character. Patch by Wes Chow.
- Issue #10714: Limit length of incoming request in http.server to 65536 bytes
for security reasons. Initial patch by Ross Lagerwall.