| Index: third_party/twisted_8_1/twisted/test/stdio_test_writeseq.py
|
| diff --git a/third_party/twisted_8_1/twisted/test/stdio_test_writeseq.py b/third_party/twisted_8_1/twisted/test/stdio_test_writeseq.py
|
| deleted file mode 100644
|
| index 5a499ba9747922442333db032b0b8fe28a83e740..0000000000000000000000000000000000000000
|
| --- a/third_party/twisted_8_1/twisted/test/stdio_test_writeseq.py
|
| +++ /dev/null
|
| @@ -1,30 +0,0 @@
|
| -# -*- test-case-name: twisted.test.test_stdio.StandardInputOutputTestCase.test_writeSequence -*-
|
| -# Copyright (c) 2006-2007 Twisted Matrix Laboratories.
|
| -# See LICENSE for details.
|
| -
|
| -"""
|
| -Main program for the child process run by
|
| -L{twisted.test.test_stdio.StandardInputOutputTestCase.test_writeSequence} to test that
|
| -ITransport.writeSequence() works for process transports.
|
| -"""
|
| -
|
| -import sys
|
| -
|
| -from twisted.internet import stdio, protocol
|
| -from twisted.python import reflect
|
| -
|
| -class WriteSequenceChild(protocol.Protocol):
|
| - def connectionMade(self):
|
| - self.transport.writeSequence(list('ok!'))
|
| - self.transport.loseConnection()
|
| -
|
| -
|
| - def connectionLost(self, reason):
|
| - reactor.stop()
|
| -
|
| -
|
| -if __name__ == '__main__':
|
| - reflect.namedAny(sys.argv[1]).install()
|
| - from twisted.internet import reactor
|
| - stdio.StandardIO(WriteSequenceChild())
|
| - reactor.run()
|
|
|