summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-11-01 15:14:27 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-11-01 15:14:27 (GMT)
commit9785261d68f62ce33968d15c7a0f10f1f8209807 (patch)
treeaa37c5e251be750409645db8ddb323f33661f2b2 /Misc/NEWS
parent17bdf2015d8c46d6418ad7b8742a4fb0d277a642 (diff)
downloadcpython-9785261d68f62ce33968d15c7a0f10f1f8209807.zip
cpython-9785261d68f62ce33968d15c7a0f10f1f8209807.tar.gz
cpython-9785261d68f62ce33968d15c7a0f10f1f8209807.tar.bz2
Issue #18973: Command-line interface of the calendar module now uses argparse
instead of optparse.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b67a3a5..5722a3a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -66,6 +66,9 @@ Core and Builtins
Library
-------
+- Issue #18973: Command-line interface of the calendar module now uses argparse
+ instead of optparse.
+
- Issue #25510: fileinput.FileInput.readline() now returns b'' instead of ''
at the end if the FileInput was opened with binary mode.
Patch by Ryosuke Ito.