栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

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

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

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



转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/638153.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号