本文整理汇总了Python中Server.Server.kill方法的典型用法代码示例。如果您正苦于以下问题:Python Server.kill方法的具体用法?Python Server.kill怎么用?Python Server.kill使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Server.Server
的用法示例。
在下文中一共展示了Server.kill方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: main
# 需要导入模块: from Server import Server [as 别名]
# 或者: from Server.Server import kill [as 别名]
def main():
my = Manage(getpass('Enter password: '))
my.index = MyIndex()
print "ID : %s" % sha256(my.ecc.pubkey_x+my.ecc.pubkey_y).hexdigest()
print "Public Key x : %s " % my.ecc.pubkey_x.encode('hex')
print "Public Key y : %s" % my.ecc.pubkey_y.encode('hex')
print "\ntry help for help ;)"
# Now asynchrone
monkey.patch_all()
fcntl.fcntl(sys.stdin, fcntl.F_SETFL, os.O_NONBLOCK)
S = shell(my)
server = Server(port, my)
try:
S.loop()
except KeyboardInterrupt:
pass
if server.ready() is False:
server.kill(block=True)
print "Bye"
sys.exit(0)
示例2: tearDownClass
# 需要导入模块: from Server import Server [as 别名]
# 或者: from Server.Server import kill [as 别名]
def tearDownClass(cls):
Server.kill()