This commit is contained in:
Adrian Heine 2024-04-08 12:05:14 +02:00
commit 3b5146a7b8
11 changed files with 120 additions and 0 deletions

40
debian/patches/test_twisted vendored Normal file
View file

@ -0,0 +1,40 @@
Index: python-pyamf-0.8.11~git2fe5a4a52c4c/pyamf/tests/gateway/test_twisted.py
===================================================================
--- python-pyamf-0.8.11~git2fe5a4a52c4c.orig/pyamf/tests/gateway/test_twisted.py
+++ python-pyamf-0.8.11~git2fe5a4a52c4c/pyamf/tests/gateway/test_twisted.py
@@ -31,21 +31,22 @@ from pyamf.remoting import gateway
from pyamf.flex import messaging
-@implementer(IBodyProducer)
-class BytesProducer(object):
- def __init__(self, body):
- self.body = body
- self.length = len(body)
-
- def startProducing(self, consumer):
- consumer.write(self.body)
- return succeed(None)
+if twisted:
+ @implementer(IBodyProducer)
+ class BytesProducer(object):
+ def __init__(self, body):
+ self.body = body
+ self.length = len(body)
+
+ def startProducing(self, consumer):
+ consumer.write(self.body)
+ return succeed(None)
- def pauseProducing(self):
- pass
+ def pauseProducing(self):
+ pass
- def stopProducing(self):
- pass
+ def stopProducing(self):
+ pass
class TestService(object):