diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-12-19 21:17:43 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-12-19 21:17:43 (GMT) |
commit | af5e29a769c1db9c1dd24b6d7344b9c6e0f2713f (patch) | |
tree | 6736d74e912bb4cb0ced03e05a6faf90e17ce18a /Lib/test | |
parent | fc8f5c5e0f7e004660cd72f889f21395cff9b1b1 (diff) | |
parent | fd43b4d3e4ef17f018e6da2d218c6ae193d6b45c (diff) | |
download | cpython-af5e29a769c1db9c1dd24b6d7344b9c6e0f2713f.zip cpython-af5e29a769c1db9c1dd24b6d7344b9c6e0f2713f.tar.gz cpython-af5e29a769c1db9c1dd24b6d7344b9c6e0f2713f.tar.bz2 |
merge heads
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_urllib2.py | 2 | ||||
-rw-r--r-- | Lib/test/test_winreg.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py index f296aa4..22e553f 100644 --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -1302,7 +1302,7 @@ class HandlerTests(unittest.TestCase): ) 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 # return None to allow another handler (especially # HTTPBasicAuthHandler) to handle the response. diff --git a/Lib/test/test_winreg.py b/Lib/test/test_winreg.py index 318937c..1f0f957 100644 --- a/Lib/test/test_winreg.py +++ b/Lib/test/test_winreg.py @@ -277,7 +277,7 @@ class LocalWinregTests(BaseWinregTests): def test_long_key(self): # 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" name = 'x'*256 try: |