summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2013-05-29 12:57:21 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2013-05-29 12:57:21 (GMT)
commit6b3026ce7299056a3f10b25426cda34d771857ac (patch)
tree4aab00c18f16f3a9e9f9dc02e616417836caaac5 /Misc
parent7b503965a0c19c1a19d244e15b74cb0964f08c3c (diff)
parentc70a6ae49bd162af06130e48a45579d445e058a8 (diff)
downloadcpython-6b3026ce7299056a3f10b25426cda34d771857ac.zip
cpython-6b3026ce7299056a3f10b25426cda34d771857ac.tar.gz
cpython-6b3026ce7299056a3f10b25426cda34d771857ac.tar.bz2
merge from 3.3
#17403: urllib.parse.robotparser normalizes the urls before adding to ruleline. This helps in handling certain types invalid urls in a conservative manner. Patch contributed by Mher Movsisyan.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index be1be6a..3b9416b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -96,6 +96,10 @@ Core and Builtins
Library
-------
+- Issue #17403: urllib.parse.robotparser normalizes the urls before adding to
+ ruleline. This helps in handling certain types invalid urls in a conservative
+ manner. Patch contributed by Mher Movsisyan.
+
- Issue #18070: Have importlib.util.module_for_loader() set attributes
unconditionally in order to properly support reloading.