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


Python UIBase.UIBase類代碼示例

本文整理匯總了Python中UIBase.UIBase的典型用法代碼示例。如果您正苦於以下問題:Python UIBase類的具體用法?Python UIBase怎麽用?Python UIBase使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


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

示例1: mainException

 def mainException(s):
     if isinstance(sys.exc_info()[1], KeyboardInterrupt) and \
        s.iswaiting:
         sys.stdout.write("Timer interrupted at user request; program terminating.             \n")
         s.terminate()
     else:
         UIBase.mainException(s)
開發者ID:B-Rich,項目名稱:offlineimap,代碼行數:7,代碼來源:TTY.py

示例2: unregisterthread

 def unregisterthread(s, thread):
     UIBase.unregisterthread(s, thread)
     s._printData('unregisterthread', thread.getName())
開發者ID:andresp,項目名稱:offlineimap,代碼行數:3,代碼來源:Machine.py

示例3: registerthread

 def registerthread(s, account):
     UIBase.registerthread(s, account)
     s._printData('registerthread', account)
開發者ID:andresp,項目名稱:offlineimap,代碼行數:3,代碼來源:Machine.py

示例4: __init__

 def __init__(s, config, verbose = 0):
     UIBase.__init__(s, config, verbose)
     s.safechars=" ;,./-_=+()[]"
     s.iswaiting = 0
     s.outputlock = Lock()
     s._printData('__init__', protocol)
開發者ID:andresp,項目名稱:offlineimap,代碼行數:6,代碼來源:Machine.py

示例5: threadExited

 def threadExited(s, thread):
     s._printData('threadExited', thread.getName())
     UIBase.threadExited(s, thread)
開發者ID:andresp,項目名稱:offlineimap,代碼行數:3,代碼來源:Machine.py

示例6: sleep

 def sleep(s, sleepsecs, siglistener):
     if s.verbose >= 0:
         s._msg("Sleeping for %d:%02d" % (sleepsecs / 60, sleepsecs % 60))
     return UIBase.sleep(s, sleepsecs, siglistener)
開發者ID:AndreaCrotti,項目名稱:offlineimap,代碼行數:4,代碼來源:Noninteractive.py

示例7: __init__

 def __init__(s, config, verbose = 0):
     UIBase.__init__(s, config, verbose)
     s.iswaiting = 0
     s.outputlock = Lock()
     s._lastThreaddisplay = None
開發者ID:B-Rich,項目名稱:offlineimap,代碼行數:5,代碼來源:TTY.py

示例8: __init__

 def __init__(s, config, verbose=0):
     UIBase.__init__(s, config, verbose)
     s.iswaiting = 0
     s.outputlock = Lock()
開發者ID:noah,項目名稱:offlineimap,代碼行數:4,代碼來源:TTY.py

示例9: mainException

 def mainException(s):
     s.c.stop()
     UIBase.mainException(s)
開發者ID:glasserc,項目名稱:offlineimap,代碼行數:3,代碼來源:Curses.py

示例10: threadException

 def threadException(s, thread):
     s.c.stop()
     UIBase.threadException(s, thread)
開發者ID:glasserc,項目名稱:offlineimap,代碼行數:3,代碼來源:Curses.py

示例11: terminate

 def terminate(s, exitstatus=0, errortitle=None, errormsg=None):
     s.c.stop()
     UIBase.terminate(s, exitstatus=exitstatus, errortitle=errortitle, errormsg=errormsg)
開發者ID:glasserc,項目名稱:offlineimap,代碼行數:3,代碼來源:Curses.py

示例12: sleep

 def sleep(s, sleepsecs):
     if s.verbose >= 0:
         s._msg("Sleeping for %d:%02d" % (sleepsecs / 60, sleepsecs % 60))
     UIBase.sleep(s, sleepsecs)
開發者ID:avsm,項目名稱:lifedb-plugins,代碼行數:4,代碼來源:Noninteractive.py


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