当前位置: 首页>>代码示例>>Python>>正文


Python io.BlockingIOError方法代码示例

本文整理汇总了Python中io.BlockingIOError方法的典型用法代码示例。如果您正苦于以下问题:Python io.BlockingIOError方法的具体用法?Python io.BlockingIOError怎么用?Python io.BlockingIOError使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在io的用法示例。


在下文中一共展示了io.BlockingIOError方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: recv_raw

# 需要导入模块: import io [as 别名]
# 或者: from io import BlockingIOError [as 别名]
def recv_raw(self, x=MTU):
        try:
            data, address = self.ins.recvfrom(x)
        except io.BlockingIOError:
            return None, None, None
        from scapy.layers.inet import IP
        from scapy.layers.inet6 import IPv6
        if self.ipv6:
            # AF_INET6 does not return the IPv6 header. Let's build it
            # (host, port, flowinfo, scopeid)
            host, _, flowinfo, _ = address
            header = raw(IPv6(src=host,
                              dst=self.host_ip6,
                              fl=flowinfo,
                              nh=self.proto,  # fixed for AF_INET6
                              plen=len(data)))
            return IPv6, header + data, time.time()
        else:
            return IP, data, time.time() 
开发者ID:secdev,项目名称:scapy,代码行数:21,代码来源:native.py

示例2: _read_bytes

# 需要导入模块: import io [as 别名]
# 或者: from io import BlockingIOError [as 别名]
def _read_bytes(fp, size, error_template="ran out of data"):
    """
    Read from file-like object until size bytes are read.
    Raises ValueError if not EOF is encountered before size bytes are read.
    Non-blocking objects only supported if they derive from io objects.

    Required as e.g. ZipExtFile in python 2.6 can return less data than
    requested.
    """
    data = bytes()
    while True:
        # io files (default in python3) return None or raise on
        # would-block, python2 file will truncate, probably nothing can be
        # done about that.  note that regular files can't be non-blocking
        try:
            r = fp.read(size - len(data))
            data += r
            if len(r) == 0 or len(data) == size:
                break
        except io.BlockingIOError:
            pass
    if len(data) != size:
        msg = "EOF: reading %s, expected %d bytes got %d"
        raise ValueError(msg % (error_template, size, len(data)))
    else:
        return data 
开发者ID:Frank-qlu,项目名称:recruit,代码行数:28,代码来源:format.py

示例3: good_case3

# 需要导入模块: import io [as 别名]
# 或者: from io import BlockingIOError [as 别名]
def good_case3():
    """io.BlockingIOError is defined in C."""
    import io
    raise io.BlockingIOError 
开发者ID:sofia-netsurv,项目名称:python-netsurv,代码行数:6,代码来源:invalid_exceptions_raised.py

示例4: _flush_unlocked

# 需要导入模块: import io [as 别名]
# 或者: from io import BlockingIOError [as 别名]
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] 
开发者ID:exiahuang,项目名称:SalesforceXyTools,代码行数:12,代码来源:wsgiserver3.py

示例5: _read_bytes

# 需要导入模块: import io [as 别名]
# 或者: from io import BlockingIOError [as 别名]
def _read_bytes(fp, size, error_template="ran out of data"):
    """Read from file-like object until size bytes are read.

    Raises ValueError if not EOF is encountered before size bytes are read.
    Non-blocking objects only supported if they derive from io objects.

    Required as e.g. ZipExtFile in python 2.6 can return less data than
    requested.

    This function was taken from numpy/lib/format.py in version 1.10.2.

    Parameters
    ----------
    fp: file-like object
    size: int
    error_template: str

    Returns
    -------
    a bytes object
        The data read in bytes.

    """
    data = bytes()
    while True:
        # io files (default in python3) return None or raise on
        # would-block, python2 file will truncate, probably nothing can be
        # done about that.  note that regular files can't be non-blocking
        try:
            r = fp.read(size - len(data))
            data += r
            if len(r) == 0 or len(data) == size:
                break
        except io.BlockingIOError:
            pass
    if len(data) != size:
        msg = "EOF: reading %s, expected %d bytes got %d"
        raise ValueError(msg % (error_template, size, len(data)))
    else:
        return data 
开发者ID:flennerhag,项目名称:mlens,代码行数:42,代码来源:numpy_pickle_utils.py

示例6: lockFile

# 需要导入模块: import io [as 别名]
# 或者: from io import BlockingIOError [as 别名]
def lockFile(f):
    # From http://tilde.town/~cristo/file-locking-in-python.html
    while True:
        try:
            fcntl.flock(f, fcntl.LOCK_EX | fcntl.LOCK_NB)
            return
        except (BlockingIOError, IOError) as e:
            # Try again in 1/10th of a second
            time.sleep(0.1) 
开发者ID:terraref,项目名称:computing-pipeline,代码行数:11,代码来源:gantry_scanner_service.py

示例7: _flush_unlocked

# 需要导入模块: import io [as 别名]
# 或者: from io import BlockingIOError [as 别名]
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] 
开发者ID:cherrypy,项目名称:cheroot,代码行数:12,代码来源:makefile.py


注:本文中的io.BlockingIOError方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。