diff options
author | Brian Elliott <bdelliott@gmail.com> | 2012-03-29 20:13:04 -0500 |
---|---|---|
committer | Brian Elliott <bdelliott@gmail.com> | 2012-03-29 20:13:04 -0500 |
commit | c52a3d56b5ed8a60d87865503975fae3a99d402e (patch) | |
tree | 6d3e64c92aa0d326507dd2f7272152108e86659e /testsuite/W60.py | |
parent | 5a0c9b0bd008bf6ce95b01b4765477a4206d60ab (diff) | |
download | pep8-c52a3d56b5ed8a60d87865503975fae3a99d402e.tar.gz |
Fix W602 checking of 3 argument raises to handle multi-char names, issue #34
Diffstat (limited to 'testsuite/W60.py')
-rw-r--r-- | testsuite/W60.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/W60.py b/testsuite/W60.py index 67e0436..ee23d61 100644 --- a/testsuite/W60.py +++ b/testsuite/W60.py @@ -4,7 +4,7 @@ if a.has_key("b"): #: W602 raise DummyError, "Message" #: Okay -raise t, v, tb +raise type_, val, tb #: W603 if x <> 0: x = 0 |