标签: python windows stdin popen curses
通常我的代码会像这样运行:
child = Popen(command, stdout=PIPE, stdin=PIPE, shell=True, bufsize=0, universal_newlines = True)
我的问题是我在Windows上运行并且我运行的程序没有使用stdin,它使用了一些curses库的变体。喜欢它直接读取tty。
有没有办法管道这种输入?