diff -r 8d7bde14d7a4 Doc/whatsnew/3.2.rst --- a/Doc/whatsnew/3.2.rst Thu Jun 30 11:43:19 2016 -0700 +++ b/Doc/whatsnew/3.2.rst Fri Jul 01 10:39:07 2016 +0300 @@ -2666,7 +2666,7 @@ * The :class:`xml.etree.ElementTree` class now raises an :exc:`xml.etree.ElementTree.ParseError` when a parse fails. Previously it - raised a :exc:`xml.parsers.expat.ExpatError`. + raised an :exc:`xml.parsers.expat.ExpatError`. * The new, longer :func:`str` value on floats may break doctests which rely on the old output format. diff -r 8d7bde14d7a4 Lib/smtplib.py --- a/Lib/smtplib.py Thu Jun 30 11:43:19 2016 -0700 +++ b/Lib/smtplib.py Fri Jul 01 10:39:07 2016 +0300 @@ -900,7 +900,7 @@ the recipient addresses contain non-ASCII and the server advertises the SMTPUTF8 capability, the policy is cloned with utf8 set to True for the serialization, and SMTPUTF8 and BODY=8BITMIME are asserted on the send. - If the server does not support SMTPUTF8, an SMPTNotSupported error is + If the server does not support SMTPUTF8, an SMTPNotSupported error is raised. Otherwise the generator is called without modifying the policy. diff -r 8d7bde14d7a4 Lib/unittest/test/test_case.py --- a/Lib/unittest/test/test_case.py Thu Jun 30 11:43:19 2016 -0700 +++ b/Lib/unittest/test/test_case.py Fri Jul 01 10:39:07 2016 +0300 @@ -339,7 +339,7 @@ self._check_call_order__subtests(result, events, expected) def test_run_call_order__subtests_legacy(self): - # With a legacy result object (without a addSubTest method), + # With a legacy result object (without an addSubTest method), # text execution stops after the first subtest failure. events = [] result = LegacyLoggingResult(events) diff -r 8d7bde14d7a4 Misc/NEWS --- a/Misc/NEWS Thu Jun 30 11:43:19 2016 -0700 +++ b/Misc/NEWS Fri Jul 01 10:39:07 2016 +0300 @@ -193,7 +193,7 @@ - Issue #26556: Update expat to 2.1.1, fixes CVE-2015-1283. -- Fix TLS stripping vulnerability in smptlib, CVE-2016-0772. Reported by Team +- Fix TLS stripping vulnerability in smtplib, CVE-2016-0772. Reported by Team Oststrom - Issue #21386: Implement missing IPv4Address.is_global property. It was