diff options
Diffstat (limited to 'tools/buildbot/pylibs/twisted/test/raiser.pyx')
-rw-r--r-- | tools/buildbot/pylibs/twisted/test/raiser.pyx | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/tools/buildbot/pylibs/twisted/test/raiser.pyx b/tools/buildbot/pylibs/twisted/test/raiser.pyx deleted file mode 100644 index a21ce09..0000000 --- a/tools/buildbot/pylibs/twisted/test/raiser.pyx +++ /dev/null @@ -1,21 +0,0 @@ -# Copyright (c) 2008 Twisted Matrix Laboratories. -# See LICENSE for details. - -""" -A trivial extension that just raises an exception. -See L{twisted.test.test_failure.test_failureConstructionWithMungedStackSucceeds}. -""" - - - -class RaiserException(Exception): - """ - A speficic exception only used to be identified in tests. - """ - - -def raiseException(): - """ - Raise L{RaiserException}. - """ - raise RaiserException("This function is intentionally broken") |