IOError:[Errno 32]管道损坏:Python

IOError:[Errno 32]管道损坏:Python,第1张

IOError:[Errno 32]管道损坏:Python

我没有重现这个问题,但是也许这种方法可以解决这个问题:(逐行写入

stdout
而不是使用
print

import syswith open('a.txt', 'r') as f1:    for line in f1:        sys.stdout.write(line)

你能抓住破损的管道吗?这将文件

stdout
逐行写入,直到关闭管道为止。

import sys, errnotry:    with open('a.txt', 'r') as f1:        for line in f1: sys.stdout.write(line)except IOError as e:    if e.errno == errno.EPIPE:        # Handle error

您还需要确保

othercommand
在管道变得太大之前正在从管道读取-https:
//unix.stackexchange.com/questions/11946/how-big-is-the-pipe-
buffer



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5643972.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存