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


Python termios.tcdrain方法代码示例

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


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

示例1: flush

# 需要导入模块: import termios [as 别名]
# 或者: from termios import tcdrain [as 别名]
def flush(self):
        """Flush the write buffer of the serial port, blocking until all bytes
        are written.

        Raises:
            SerialError: if an I/O or OS error occurs.

        """
        try:
            termios.tcdrain(self._fd)
        except termios.error as e:
            raise SerialError(e.errno, "Flushing serial port: " + e.strerror) 
开发者ID:vsergeev,项目名称:python-periphery,代码行数:14,代码来源:serial.py

示例2: flush

# 需要导入模块: import termios [as 别名]
# 或者: from termios import tcdrain [as 别名]
def flush(self):
        """\
        Flush of file like objects. In this case, wait until all data
        is written.
        """
        if not self.is_open:
            raise portNotOpenError
        termios.tcdrain(self.fd) 
开发者ID:cedricp,项目名称:ddt4all,代码行数:10,代码来源:serialposix.py

示例3: drainOutput

# 需要导入模块: import termios [as 别名]
# 或者: from termios import tcdrain [as 别名]
def drainOutput(self):
        """internal - not portable!"""
        if not self._isOpen: raise portNotOpenError
        termios.tcdrain(self.fd) 
开发者ID:FSecureLABS,项目名称:Jandroid,代码行数:6,代码来源:serialposix.py

示例4: _restore

# 需要导入模块: import termios [as 别名]
# 或者: from termios import tcdrain [as 别名]
def _restore(cls, what: Optional[TcAttrsType] = None) -> None:
        if sys.stdout.isatty():
            # termios.tcdrain(sys.stdout.fileno())
            # if sys.stderr.isatty():
            #     termios.tcdrain(sys.stderr.fileno())
            # if sys.stdin.isatty():
            #     termios.tcflush(sys.stdin.fileno(), termios.TCIOFLUSH)
            if what:
                termios.tcsetattr(sys.stdin.fileno(), termios.TCSANOW, what) 
开发者ID:actionless,项目名称:pikaur,代码行数:11,代码来源:pikspect.py


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