changeset: 104712:ebe5bd33f86f branch: 3.6 parent: 104709:bfa400108fc5 parent: 104711:8d54c2a1c796 user: Serhiy Storchaka date: Tue Oct 25 15:02:36 2016 +0300 files: Lib/calendar.py Lib/test/test_calendar.py Misc/NEWS description: 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. diff -r bfa400108fc5 -r ebe5bd33f86f Lib/calendar.py --- a/Lib/calendar.py Tue Oct 25 14:46:44 2016 +0300 +++ b/Lib/calendar.py Tue Oct 25 15:02:36 2016 +0300 @@ -314,7 +314,7 @@ """ Print a month's calendar. """ - print(self.formatmonth(theyear, themonth, w, l), end=' ') + print(self.formatmonth(theyear, themonth, w, l), end='') def formatmonth(self, theyear, themonth, w=0, l=0): """ diff -r bfa400108fc5 -r ebe5bd33f86f Lib/test/test_calendar.py --- a/Lib/test/test_calendar.py Tue Oct 25 14:46:44 2016 +0300 +++ b/Lib/test/test_calendar.py Tue Oct 25 15:02:36 2016 +0300 @@ -409,8 +409,7 @@ def test_prmonth(self): with support.captured_stdout() as out: calendar.TextCalendar().prmonth(2004, 1) - output = out.getvalue().strip() - self.assertEqual(output, result_2004_01_text.strip()) + self.assertEqual(out.getvalue(), result_2004_01_text) def test_pryear(self): with support.captured_stdout() as out: diff -r bfa400108fc5 -r ebe5bd33f86f Misc/NEWS --- a/Misc/NEWS Tue Oct 25 14:46:44 2016 +0300 +++ b/Misc/NEWS Tue Oct 25 15:02:36 2016 +0300 @@ -29,6 +29,10 @@ 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.