标签: python sockets stream pipe iostream
所以我有两个对象,每个对象都有一个进出流。我想连接它们(在Python 3中)。有什么方法可以映射:
a.in = b.out b.in = a.out
或者,我是否有两个为每个方向写一个轮询器?例如。这样:
def thread_a(): while(c = a.in.getc()): b.out.put(c) def thread_b(): while(c = b.in.getc()): a.out.put(c)