summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2010-12-03 19:19:17 (GMT)
committerÉric Araujo <merwok@netwok.org>2010-12-03 19:19:17 (GMT)
commita9c7a8fa5bded740bba314cb07ebd3c99eba928e (patch)
treee856a1a97458a97a330bc0c46c753a04efa583c5 /Misc
parentbed81c882b153913dddc805ae0d6620b5058d0c0 (diff)
downloadcpython-a9c7a8fa5bded740bba314cb07ebd3c99eba928e.zip
cpython-a9c7a8fa5bded740bba314cb07ebd3c99eba928e.tar.gz
cpython-a9c7a8fa5bded740bba314cb07ebd3c99eba928e.tar.bz2
Fix incorrect use of gettext in argparse (#10497).
Steven, the maintainer of argparse, agreed to have this committed without tests for now, since the fix is obvious. See the bug log.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b0221cb..d2e4fa8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -35,6 +35,8 @@ Core and Builtins
Library
-------
+- Issue #10497: Fix incorrect use of gettext in argparse.
+
- Issue #10478: Reentrant calls inside buffered IO objects (for example by
way of a signal handler) now raise a RuntimeError instead of freezing the
current process.