summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2014-10-18 00:28:47 (GMT)
committerR David Murray <rdmurray@bitdance.com>2014-10-18 00:28:47 (GMT)
commit838f2c437db5796d316f106b1496d8d29268c5ca (patch)
tree47e87dd48e105e47be86796f3cac0ddf1b8100d1 /Misc
parent7570cbdc6b394cd89990a9252284c7e4a87bd6f1 (diff)
downloadcpython-838f2c437db5796d316f106b1496d8d29268c5ca.zip
cpython-838f2c437db5796d316f106b1496d8d29268c5ca.tar.gz
cpython-838f2c437db5796d316f106b1496d8d29268c5ca.tar.bz2
#18853: Fix resource warning in shlex's __main__ section.
Report and original fix by Vajrasky Kok.
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 9c50f3e..2738699 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -33,6 +33,8 @@ Core and Builtins
Library
-------
+- Issue #18853: Fixed ResourceWarning in shlex.__nain__.
+
- Issue #9351: Defaults set with set_defaults on an argparse subparser
are no longer ignored when also set on the parent parser.