Combined two excerpt statements

This commit is contained in:
Andrew Murray 2018-01-06 21:58:05 +11:00
parent b7aab522e1
commit 696b3819e8

View File

@ -48,9 +48,7 @@ def isInt(f):
return 1
else:
return 0
except ValueError:
return 0
except OverflowError:
except (ValueError, OverflowError):
return 0
iforms = [1, 3, -11, -12, -21, -22]