當前位置: 首頁>>代碼示例>>Python>>正文


Python termios.TCIOFLUSH屬性代碼示例

本文整理匯總了Python中termios.TCIOFLUSH屬性的典型用法代碼示例。如果您正苦於以下問題:Python termios.TCIOFLUSH屬性的具體用法?Python termios.TCIOFLUSH怎麽用?Python termios.TCIOFLUSH使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在termios的用法示例。


在下文中一共展示了termios.TCIOFLUSH屬性的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: user_input

# 需要導入模塊: import termios [as 別名]
# 或者: from termios import TCIOFLUSH [as 別名]
def user_input(msg, initial=''):
    # Function to capture raw_input w/ key buffer flush
    tcflush(sys.stdin, TCIOFLUSH)
    readline.set_startup_hook(lambda: readline.insert_text(initial))
    keyin = raw_input(msg)
    return keyin 
開發者ID:gluster,項目名稱:gluster-one,代碼行數:8,代碼來源:g1modules.py

示例2: restore_termios

# 需要導入模塊: import termios [as 別名]
# 或者: from termios import TCIOFLUSH [as 別名]
def restore_termios(stream, state):
        if state and is_stream_interactive(stream):
            fd = stream.fileno()
            termios.tcflush(fd, termios.TCIOFLUSH)
            termios.tcsetattr(fd, termios.TCSANOW, state) 
開發者ID:Pylons,項目名稱:hupper,代碼行數:7,代碼來源:ipc.py

示例3: _restore

# 需要導入模塊: import termios [as 別名]
# 或者: from termios import TCIOFLUSH [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

示例4: run

# 需要導入模塊: import termios [as 別名]
# 或者: from termios import TCIOFLUSH [as 別名]
def run(self):

        if self.b_init:
            self.b_init = False
            self.fd = sys.stdin.fileno() 
            if os.isatty(sys.stdin.fileno()):
                self.old_settings = termios.tcgetattr(self.fd) 
                tty.setraw(sys.stdin.fileno()) 

        while not self.b_exit:

            rd_fs, wrt_fs, err_fs =  select.select([sys.stdin], [], [], self.interval)

            if rd_fs and os.isatty(sys.stdin.fileno()):
                cmd = rd_fs[0].read(1)

                if cmd == ('q' or 'Q'): # quit
                    termios.tcsetattr(self.fd, termios.TCSADRAIN, self.old_settings)
                    termios.tcflush(self.fd, termios.TCIOFLUSH)
                    self.b_exit = True
                    self.quit_app.emit()

                elif cmd == ('p' or 'P'): # show proccesses
                    self.b_procs = True
                    termios.tcsetattr(self.fd, termios.TCSADRAIN, self.old_settings)
                    self.print_procs.emit()
                    tty.setraw(sys.stdin.fileno()) 

                elif cmd == ('l' or 'L'): # show log
                    if self.b_log:
                        termios.tcsetattr(self.fd, termios.TCSADRAIN, self.old_settings)
                        reset_screen() # reset the screen to hide the log list
                        tty.setraw(sys.stdin.fileno()) 
                    self.b_log = not self.b_log
                    
                else:
                    sys.stdout.write('\b')

            else:
                if os.isatty(sys.stdin.fileno()):
                    self.callback() 
開發者ID:hANSIc99,項目名稱:Pythonic,代碼行數:43,代碼來源:main_daemon.py

示例5: __getKey

# 需要導入模塊: import termios [as 別名]
# 或者: from termios import TCIOFLUSH [as 別名]
def __getKey():
        """Return a key pressed by the user"""
        try:
            tty.setcbreak(sys.stdin.fileno())
            termios.tcflush(sys.stdin, termios.TCIOFLUSH)
            ch = sys.stdin.read(1)
            return ord(ch) if ch else None
        finally:
            termios.tcsetattr(__fd, termios.TCSADRAIN, __old) 
開發者ID:Nicola17,項目名稱:term2048-AI,代碼行數:11,代碼來源:keypress.py


注:本文中的termios.TCIOFLUSH屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。