有没有一种方法可以连接两个内存文件对象,以便在从另一个文件中读取时可以写入其中一个文件?

时间:2019-12-06 13:01:37

标签: python-3.x

即像这样:

import io

file_1 = io.BytesIO()   # Or whatever object needs to be created...
file_2 = io.BytesIO()   # Or whatever object needs to be created...
file_1.connect(file_2)  # ?
file_1.write("asd")     # A thread reading from file_2 will receive this data

我目前正在为内部设计的协议实现这两个端点,这将帮助我测试它而无需建立任何套接字连接。

0 个答案:

没有答案