mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Issue #27626: Spelling fixes in docs, comments and internal names
Based on patch by Ville Skyttä.
This commit is contained in:
parent
eac67be948
commit
eb9957065a
33 changed files with 48 additions and 48 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue