当前位置: 首页>>代码示例>>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;未经允许,请勿转载。