diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2014-03-24 23:56:59 +0100 |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2014-03-24 23:56:59 +0100 |
commit | 173592fccdef25078d599e0f748650ef43ed13cc (patch) | |
tree | 9ef17b98ee32957fff9bd080415d69aaf9260f83 /testsuite | |
parent | ca37ce87c8446b13abf18d0a9079479914834ee1 (diff) | |
download | pep8-173592fccdef25078d599e0f748650ef43ed13cc.tar.gz |
Relax a bit the regex for W602, 3-arguments raise; closes #34
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/W60.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testsuite/W60.py b/testsuite/W60.py index 6d819ee..973d22f 100644 --- a/testsuite/W60.py +++ b/testsuite/W60.py @@ -7,6 +7,7 @@ raise DummyError, "Message" raise ValueError, "hello %s %s" % (1, 2) #: Okay raise type_, val, tb +raise Exception, Exception("f"), t #: W603 if x <> 0: x = 0 |