wsgiserver.py 文件源码

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

项目:wsgiserver 作者: fgallaire 项目源码 文件源码
def _flush_unlocked(self):
        self._checkClosed("flush of closed file")
        while self._write_buf:
            try:
                # ssl sockets only except 'bytes', not bytearrays
                # so perhaps we should conditionally wrap this for perf?
                n = self.raw.write(bytes(self._write_buf))
            except io.BlockingIOError as e:
                n = e.characters_written
            del self._write_buf[:n]
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号