aboutsummaryrefslogtreecommitdiffstats
path: root/community/py3-twisted/fix-test-import.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/py3-twisted/fix-test-import.patch')
-rw-r--r--community/py3-twisted/fix-test-import.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/community/py3-twisted/fix-test-import.patch b/community/py3-twisted/fix-test-import.patch
new file mode 100644
index 00000000000..f505292250b
--- /dev/null
+++ b/community/py3-twisted/fix-test-import.patch
@@ -0,0 +1,11 @@
+--- a/src/twisted/test/test_failure.py
++++ b/src/twisted/test/test_failure.py
+@@ -22,7 +22,7 @@
+ from twisted.trial.unittest import SynchronousTestCase
+
+
+-from cython_test_exception_raiser import raiser # type: ignore[import]
++raiser = None
+
+
+ def getDivisionFailure(*args, **kwargs):