Lines Matching refs:BaseException
212 (BaseException, (), {'message' : '', 'args' : ()}),
213 (BaseException, (1, ), {'message' : 1, 'args' : (1,)}),
214 (BaseException, ('foo',),
216 (BaseException, ('foo', 1),
288 except BaseException, e:
316 exc = BaseException("foo")
325 exc = BaseException("foo")
352 exc = BaseException(*args)
359 self.assertRaises(TypeError, BaseException, a=1)
361 class DerivedException(BaseException):
363 BaseException.__init__(self)