Issue #27626: Spelling fixes in docs, comments and internal names

Based on patch by Ville Skyttä.
This commit is contained in:
Martin Panter 2016-07-28 01:11:04 +00:00
parent eac67be948
commit eb9957065a
33 changed files with 48 additions and 48 deletions

View file

@ -1465,14 +1465,14 @@ class MockSocketTests(unittest.TestCase):
def test_service_temporarily_unavailable(self):
#Test service temporarily unavailable
class Handler(NNTPv1Handler):
welcome = '400 Service temporarily unavilable'
welcome = '400 Service temporarily unavailable'
self.check_constructor_error_conditions(
Handler, nntplib.NNTPTemporaryError, Handler.welcome)
def test_service_permanently_unavailable(self):
#Test service permanently unavailable
class Handler(NNTPv1Handler):
welcome = '502 Service permanently unavilable'
welcome = '502 Service permanently unavailable'
self.check_constructor_error_conditions(
Handler, nntplib.NNTPPermanentError, Handler.welcome)