扭曲矩阵出错:Windows不支持usePTY参数

时间:2013-07-01 22:41:29

标签: python twisted simulation telnet pty

我正在尝试从连接上生成shell的PTY服务器的扭曲文档中运行示例代码示例。

from twisted.internet import reactor, protocol

class FakeTelnet(protocol.Protocol):
    commandToRun = ['/bin/sh'] # could have args too
    dirToRunIn = '/tmp'
    def connectionMade(self):
        print 'connection made'
        self.propro = ProcessProtocol(self)
        reactor.spawnProcess(self.propro, self.commandToRun[0], self.commandToRun, {},
                             self.dirToRunIn, usePTY=1)
    def dataReceived(self, data):
        self.propro.transport.write(data)
    def conectionLost(self, reason):
        print 'connection lost'
        self.propro.tranport.loseConnection()

class ProcessProtocol(protocol.ProcessProtocol):

    def __init__(self, pr):
        self.pr = pr

    def outReceived(self, data):
        self.pr.transport.write(data)

    def processEnded(self, reason):
        print 'protocol conection lost'
        self.pr.transport.loseConnection()

f = protocol.Factory()
f.protocol = FakeTelnet
reactor.listenTCP(5823, f)
reactor.run()

此代码提供错误“Windows上不支持usePTY参数”。我希望有一个解决方法或任何可能有助于在Windows上运行它的东西。

1 个答案:

答案 0 :(得分:0)

尝试在Windows上运行此代码有点荒谬。作为一个非常基础的级别,/bin/sh在Windows上不可用,因此它会失败。

其次,更直接地指向您的问题:usePTY使用PTYpseudo-terminal,这是Windows上不存在的概念。它绝对不受支持。