6
我有一個懷疑在扭曲python有關我的multiclient聊天服務器程序。鍵盤輸入使用stdio.StandardIO在扭曲的python
也就是說,當我們給鍵盤輸入使用stdio.StandardIO
,當我們運行反應堆時它被存儲在哪裏?有沒有人可以給我答案,請..
我有一個懷疑在扭曲python有關我的multiclient聊天服務器程序。鍵盤輸入使用stdio.StandardIO在扭曲的python
也就是說,當我們給鍵盤輸入使用stdio.StandardIO
,當我們運行反應堆時它被存儲在哪裏?有沒有人可以給我答案,請..
twisted.internet.stdio.StandardIO
不「存儲」任何地方的數據。它是一種與協議相關的運輸工具。您與其關聯的協議可以對傳送給它的數據執行任何操作。
您可以在Twisted文檔中找到使用StandardIO
的兩個示例,https://twistedmatrix.com/documents/current/_downloads/stdin.py和https://twistedmatrix.com/documents/current/_downloads/stdiodemo.py。
Got it!謝謝 – Suruchi
讓 - 保羅,請多幫忙。請根據上述答案給我舉個例子。 – Suruchi
感謝讓保羅.. – Suruchi