summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-10-25 12:00:52 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-10-25 12:00:52 (GMT)
commit7ff51bd2b8b8407942e3bab2c9267cc8b95f06be (patch)
tree309cc779cf34977bf0aec44b944146186ee29598 /Misc
parentf3ebc9fe3fae3d44da4d0da9764ed7c033115f12 (diff)
downloadcpython-7ff51bd2b8b8407942e3bab2c9267cc8b95f06be.zip
cpython-7ff51bd2b8b8407942e3bab2c9267cc8b95f06be.tar.gz
cpython-7ff51bd2b8b8407942e3bab2c9267cc8b95f06be.tar.bz2
Issue #28255: calendar.TextCalendar().prmonth() no longer prints a space
at the start of new line after printing a month's calendar. Patch by Xiang Zhang.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c440571..a20870f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -113,6 +113,10 @@ Core and Builtins
Library
-------
+- Issue #28255: calendar.TextCalendar().prmonth() no longer prints a space
+ at the start of new line after printing a month's calendar. Patch by
+ Xiang Zhang.
+
- Issue #20491: The textwrap.TextWrapper class now honors non-breaking spaces.
Based on patch by Kaarle Ritvanen.