summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2011-04-14 12:54:35 +0800
committerSenthil Kumaran <orsenthil@gmail.com>2011-04-14 12:54:35 +0800
commita99b761972c60b4c98e2c08233faa7b915e4104c (patch)
tree50a57b8d714d260749980292d68df6ac257258f2 /Misc
parent7f9d2ead346902bbe3da15969605b3bcd4ea06eb (diff)
downloadcpython-git-a99b761972c60b4c98e2c08233faa7b915e4104c.tar.gz
Fix Issue11474 - url2pathname() handling of '/C|/' on Windows
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4718a69b1c..20fa417924 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -51,6 +51,9 @@ Core and Builtins
Library
-------
+- Issue #11474: Fix the bug with url2pathname() handling of '/C|/' on Windows.
+ Patch by Santoso Wijaya.
+
- Issue #9233: Fix json.loads('{}') to return a dict (instead of a list), when
_json is not available.