summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-07-01 09:17:45 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2016-07-01 09:17:45 (GMT)
commita9e1ebb780b971079f5b43813426261bd69baf5d (patch)
tree524418792b06f76b911febbb241897869d1dc20b
parente807e892ed0b8398f62351f204cae6b35d4f0510 (diff)
parente39682b0768bcf06d3c0d8480dd2f98824afafe6 (diff)
downloadcpython-a9e1ebb780b971079f5b43813426261bd69baf5d.zip
cpython-a9e1ebb780b971079f5b43813426261bd69baf5d.tar.gz
cpython-a9e1ebb780b971079f5b43813426261bd69baf5d.tar.bz2
Issue #27430: Merge from 3.5
-rw-r--r--Doc/whatsnew/3.2.rst2
-rwxr-xr-xLib/smtplib.py2
-rw-r--r--Lib/unittest/test/test_case.py2
-rw-r--r--Misc/NEWS2
4 files changed, 4 insertions, 4 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst
index baaf797..975b59d 100644
--- a/Doc/whatsnew/3.2.rst
+++ b/Doc/whatsnew/3.2.rst
@@ -2666,7 +2666,7 @@ require changes to your code:
* 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 --git a/Lib/smtplib.py b/Lib/smtplib.py
index dfbf5f9..5b9e665 100755
--- a/Lib/smtplib.py
+++ b/Lib/smtplib.py
@@ -900,7 +900,7 @@ class SMTP:
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 --git a/Lib/unittest/test/test_case.py b/Lib/unittest/test/test_case.py
index 1fb95dc..8f752b8 100644
--- a/Lib/unittest/test/test_case.py
+++ b/Lib/unittest/test/test_case.py
@@ -339,7 +339,7 @@ class Test_TestCase(unittest.TestCase, TestEquality, TestHashing):
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 --git a/Misc/NEWS b/Misc/NEWS
index a6634f8..d5081f1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -193,7 +193,7 @@ Library
- 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