我是靠谱客的博主 苹果洋葱,最近开发中收集的这篇文章主要介绍python主线程和子线程_python中主线程怎样捕获子线程的异常,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

展开全部

最近因为2113别的需求,写了一个5261模块,似乎在这里能用得上:4102

https://github.com/SakuraSa/ChatProcess

其中的 example.py :#!/usr/bin/env python

# coding = utf-8

"""

example

"""

__author__ = 'Rnd495'

from time import sleep

from ChatProcess import Chatroom

class Echo(Chatroom):

"""

Echo

"""

def response(self, data):

if data.startswith('sleep'):

sec = float(data[6:])

sleep(sec)

return 'wake up after %dms' % (sec * 1000)

elif data:

return data

else:

self.stop()

return 'goodbye'

if __name__ == '__main__':

from ChatProcess import TimeoutError, ProcessError

print 'process 01:'

e = Echo.create_process(lifetime=1).start()

print e.chat('Hello world!'), e.remain

print e.chat('sleep:0.1'), e.remain

print e.chat(''), e.remain

print ''

print 'process 02:'

e = Echo.create_process(lifetime=1).start()

try:

print e.chat('Hello world!'), e.remain

print e.chat('sleep:1.0'), e.remain

print e.chat(''), e.remain

except TimeoutError, error:

print 'error:', error

print ''

print 'process 03:'

e = Echo.create_process(lifetime=1).start()

try:

print e.chat('Hello world!'), e.remain

print e.chat('sleep:not a num'), e.remain

print e.chat(''), e.remain

except ProcessError, error:

print 'error:', error

运行结果为:process 01:

Hello world! 0.773000001907

wake up after 100ms 0.549000024796

goodbye 0.547000169754

process 02:

Hello world! 0.868000030518

error: TimeoutError

process 03:

Hello world! 0.868000030518

error: ('Error occurred on loop', ValueError('could not convert string to float: not a num',))

在其1653中的 process01 中,主进程捕获了 超时

在其中的 process02 中,主进程捕获了 子进程的错误

不知道你能不能用得上

最后

以上就是苹果洋葱为你收集整理的python主线程和子线程_python中主线程怎样捕获子线程的异常的全部内容,希望文章能够帮你解决python主线程和子线程_python中主线程怎样捕获子线程的异常所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(40)

评论列表共有 0 条评论

立即
投稿
返回
顶部