replace threw with raised (#16714)

This commit is contained in:
Andrew Svetlov 2012-12-19 22:49:25 +02:00
parent 737fb89dd1
commit 7bd61cbc03
2 changed files with 2 additions and 2 deletions

View File

@ -1252,7 +1252,7 @@ class HandlerTests(unittest.TestCase):
) )
def test_basic_and_digest_auth_handlers(self): def test_basic_and_digest_auth_handlers(self):
# HTTPDigestAuthHandler threw an exception if it couldn't handle a 40* # HTTPDigestAuthHandler raised an exception if it couldn't handle a 40*
# response (http://python.org/sf/1479302), where it should instead # response (http://python.org/sf/1479302), where it should instead
# return None to allow another handler (especially # return None to allow another handler (especially
# HTTPBasicAuthHandler) to handle the response. # HTTPBasicAuthHandler) to handle the response.

View File

@ -277,7 +277,7 @@ class LocalWinregTests(BaseWinregTests):
def test_long_key(self): def test_long_key(self):
# Issue2810, in 2.6 and 3.1 when the key name was exactly 256 # Issue2810, in 2.6 and 3.1 when the key name was exactly 256
# characters, EnumKey threw "WindowsError: More data is # characters, EnumKey raised "WindowsError: More data is
# available" # available"
name = 'x'*256 name = 'x'*256
try: try: