summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-10-25 12:02:36 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-10-25 12:02:36 (GMT)
commitecb90182f59c4929a395759896d1abea4e408f39 (patch)
treee58592342e441945c079ca185ab8f604043d4138 /Misc
parenta6eba11f866f0575e18398d6fdc2cbd47ccb2495 (diff)
parent7ff51bd2b8b8407942e3bab2c9267cc8b95f06be (diff)
downloadcpython-ecb90182f59c4929a395759896d1abea4e408f39.zip
cpython-ecb90182f59c4929a395759896d1abea4e408f39.tar.gz
cpython-ecb90182f59c4929a395759896d1abea4e408f39.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 98301cc..1b51379 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -29,6 +29,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.