Index: third_party/twisted_8_1/twisted/test/raiser.pyx |
diff --git a/third_party/twisted_8_1/twisted/test/raiser.pyx b/third_party/twisted_8_1/twisted/test/raiser.pyx |
deleted file mode 100644 |
index a21ce09e7adc55dc4beb7b88a581ac24e0a09f26..0000000000000000000000000000000000000000 |
--- a/third_party/twisted_8_1/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") |