diff options
author | Collin Winter <collinw@gmail.com> | 2007-08-31 00:04:24 +0000 |
---|---|---|
committer | Collin Winter <collinw@gmail.com> | 2007-08-31 00:04:24 +0000 |
commit | 828f04ac3f0dd3b68b4dbf42a79ebb846d1de568 (patch) | |
tree | 21e25d3d969ce636c32539e4d4b5255dc4c85702 /Lib/test/test_grammar.py | |
parent | 150b7d7d02eca6970d792f3e6887f957a36b6ca2 (diff) | |
download | cpython-git-828f04ac3f0dd3b68b4dbf42a79ebb846d1de568.tar.gz |
Issue #1066: implement PEP 3109, 2/3 of PEP 3134.
Diffstat (limited to 'Lib/test/test_grammar.py')
-rw-r--r-- | Lib/test/test_grammar.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_grammar.py b/Lib/test/test_grammar.py index bfc77feccf..ee3ffc7e2e 100644 --- a/Lib/test/test_grammar.py +++ b/Lib/test/test_grammar.py @@ -438,7 +438,7 @@ class GrammarTests(unittest.TestCase): def testRaise(self): # 'raise' test [',' test] - try: raise RuntimeError, 'just testing' + try: raise RuntimeError('just testing') except RuntimeError: pass try: raise KeyboardInterrupt except KeyboardInterrupt: pass |