summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-05-26 01:55:28 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2012-05-26 01:55:28 (GMT)
commit4322c178b9923cb687bcb6beea5f46df755d0b61 (patch)
tree72c917d93000f3fc749a901594a90b1689157618 /Misc
parent0b6f6c82b51b7071d88f48abb3192bf3dc2a2d24 (diff)
parentffa4b2c037b4e2b101b24927ae30ef2fd08c839e (diff)
downloadcpython-4322c178b9923cb687bcb6beea5f46df755d0b61.zip
cpython-4322c178b9923cb687bcb6beea5f46df755d0b61.tar.gz
cpython-4322c178b9923cb687bcb6beea5f46df755d0b61.tar.bz2
Issue #14920: Fix the help(urllib.parse) failure on locale C terminals. Just have ascii in help msg
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 23ad604..ce2fe63 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -44,6 +44,9 @@ Core and Builtins
Library
-------
+- Issue #14920: Fix the help(urllib.parse) failure on locale C on terminals.
+ Have ascii characters in help.
+
- Issue #14548: Make multiprocessing finalizers check pid before
running to cope with possibility of gc running just after fork.