summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorXiang Zhang <angwerzx@126.com>2017-01-22 06:37:22 (GMT)
committerXiang Zhang <angwerzx@126.com>2017-01-22 06:37:22 (GMT)
commit7fe28ad8375677a6d696271d48783d6c38a74dce (patch)
tree50624d4578d72021f5181480e818226181030334 /Misc
parentd7d87ca9b0495f1dd04863fbb93226c0e0f7af5f (diff)
downloadcpython-7fe28ad8375677a6d696271d48783d6c38a74dce.zip
cpython-7fe28ad8375677a6d696271d48783d6c38a74dce.tar.gz
cpython-7fe28ad8375677a6d696271d48783d6c38a74dce.tar.bz2
Issue #29290: argparse help messages won't wrap at non-breaking spaces.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 4 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 84fa9d1..d2a8390 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,9 +13,12 @@ Core and Builtins
Library
-------
+- Issue #29290: Fix a regression in argparse that help messages would wrap at
+ non-breaking spaces.
+
- Issue #28735: Fixed the comparison of mock.MagickMock with mock.ANY.
-- Issue #29011: Fix an important omission by adding Deque to the typing module.
+- Issue #29011: Fix an important omission by adding Deque to the typing module.
- Issue #29219: Fixed infinite recursion in the repr of uninitialized
ctypes.CDLL instances.