summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-12-17 04:54:43 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2010-12-17 04:54:43 (GMT)
commit3396e8671d15ff90f0197a4215bb14e48a593837 (patch)
tree0ba5034fe2cfc559b385a372a886d0643dc240be /Misc/NEWS
parent115a3170c46f0281890f1ddbead443261fe309a0 (diff)
downloadcpython-3396e8671d15ff90f0197a4215bb14e48a593837.zip
cpython-3396e8671d15ff90f0197a4215bb14e48a593837.tar.gz
cpython-3396e8671d15ff90f0197a4215bb14e48a593837.tar.bz2
Merged revisions 87329 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87329 | senthil.kumaran | 2010-12-17 12:48:45 +0800 (Fri, 17 Dec 2010) | 3 lines Fix Issue9721 - urljoin behavior when the relative url starts with ';' ........
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2b09d5f..a49b344 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -20,6 +20,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.