diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-19 20:54:47 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-19 20:54:47 (GMT) |
commit | 1f415cf2c2b5f3eec5489ec1276c0629b32b28c0 (patch) | |
tree | 08c28b5c398c0e2071c7c5e883e5d08c5fc2b5df /Lib/test/test_winreg.py | |
parent | 08d02724df9c99fb66be506755986e199b8781d3 (diff) | |
parent | 7bd61cbc030663ac688364260d2142d09678b2a3 (diff) | |
download | cpython-1f415cf2c2b5f3eec5489ec1276c0629b32b28c0.zip cpython-1f415cf2c2b5f3eec5489ec1276c0629b32b28c0.tar.gz cpython-1f415cf2c2b5f3eec5489ec1276c0629b32b28c0.tar.bz2 |
replace threw with raised (#16714)
Diffstat (limited to 'Lib/test/test_winreg.py')
-rw-r--r-- | Lib/test/test_winreg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_winreg.py b/Lib/test/test_winreg.py index 918b312..c7b50dd 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: |