aboutsummaryrefslogtreecommitdiff
blob: c8892e5d405f1e70cfb14152c2990d95f13c56f1 (plain)
1
2
3
4
5
6
7
from rpython.rlib import rstackovf

# the exceptions that can be implicitely raised by some operations
standardexceptions = set([TypeError, OverflowError, ValueError,
    ZeroDivisionError, MemoryError, IOError, OSError, StopIteration, KeyError,
    IndexError, AssertionError, RuntimeError, UnicodeDecodeError,
    UnicodeEncodeError, NotImplementedError, rstackovf._StackOverflow])