Fix pybench so it works -- Larry Hastings.

This commit is contained in:
Guido van Rossum 2007-01-13 23:54:39 +00:00
parent 16be03e4a2
commit 5b787e8bc2
4 changed files with 41 additions and 39 deletions

View file

@ -20,15 +20,15 @@ class TryRaiseExcept(Test):
except:
pass
try:
raise error,"something"
raise error("something")
except:
pass
try:
raise error,"something"
raise error("something")
except:
pass
try:
raise error,"something"
raise error("something")
except:
pass
try: