cos_comm.py 文件源码

python
阅读 27 收藏 0 点赞 0 评论 0

项目:cos-python-sdk-v5 作者: tencentyun 项目源码 文件源码
def deal_with_empty_file_stream(data):
    """???????????0???????????"""
    if hasattr(data, 'fileno') and hasattr(data, 'tell'):
        try:
            fileno = data.fileno()
            total_length = os.fstat(fileno).st_size
            current_position = data.tell()
            if total_length - current_position == 0:
                return ""
        except io.UnsupportedOperation:
            return ""
    return data
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号