当前位置: 首页 > news >正文

邯郸中国建设银行网站wordpress 回收站在哪里

邯郸中国建设银行网站,wordpress 回收站在哪里,建设网站思路,长沙建站费用我正在尝试捕获所有异常错误#xff0c;然后在脚本结尾处使其引发/显示所有回溯...我有一个主脚本#xff0c;例如调用我的下标#xff1a;errors open(MISC/ERROR(S).txt, a)try:execfile(SUBSCRIPTS/Test1.py, {})except Exception:## Spread over two calls…我正在尝试捕获所有异常错误然后在脚本结尾处使其引发/显示所有回溯...我有一个主脚本例如调用我的下标errors open(MISC/ERROR(S).txt, a)try:execfile(SUBSCRIPTS/Test1.py, {})except Exception:## Spread over two calls of errors.write for readability in code...errors.write(strftime(%d/%m/%Y %H:%M:%S) )errors.write(traceback.format_exc() )try:execfile(SUBSCRIPTS/Test2.py, {})except Exception:## Spread over two calls of errors.write for readability in code...errors.write(strftime(%d/%m/%Y %H:%M:%S) )errors.write(traceback.format_exc() )errors.close()此脚本使用追溯模块从脚本中检索错误...在下一个示例中这是我当前脚本的样子for x in y:ifexample in x:for tweet in tweetlist:# Trytry:twitter.update_status(statustweet)# Do some other stuff here if it suceeeds like...printoo example worked# Damn it failed, grab the whole traceback?except Exception as reason:FailedTweet True# Do some other stuff here like...printI did other stuffif FailedTweet:print reason # Printing the reason because I dont know how to throw the exception error (full error)基本上存在一个大循环可能会在此行中出现错误twitter.update_status(statustweet)如果确实如此我希望它能够捕获回溯错误因为它在一个循环中然后在脚本完成时它可能不止一个 我希望它将所有回溯错误发送回主脚本以便将其全部写入错误文件。从代码的第一位向文件写入错误的示例# 17/08/2014 12:30:00# Traceback (most recent call last):#   FileC:\Main.py, line 117, in execute_subscripts#     execfile(SUBSCRIPTS/Test1.py, {})#   FileSUBSCRIPTS/Test1.py, line 440, in #     twitter.update_status(statusstring)#   FileC:\Python27\lib\site-packages\twython\endpoints.py, line 90, in update_status#     return self.post(statuses/update, paramsparams)#   FileC:\Python27\lib\site-packages\twython\api.py, line 234, in post#     return self.request(endpoint, POST, paramsparams, versionversion)#   FileC:\Python27\lib\site-packages\twython\api.py, line 224, in request#     content self._request(url, methodmethod, paramsparams, api_callurl)#   FileC:\Python27\lib\site-packages\twython\api.py, line 194, in _request#     retry_afterresponse.headers.get(retry-after))# TwythonError: Twitter API returned a 403 (Forbidden), This request looks like it might be automated. To protect our users from spam and other malicious activity, we cant complete this action right now. Please try again later.我将如何实现这一点这很难解释所以如果有什么不对的地方请询问。只需将回溯数据保存在列表中然后在循环完成后打印列表的内容。import tracebackreasons []for x in y:ifexample in x:for tweet in tweetlist:# Trytry:twitter.update_status(statustweet)# Do some other stuff here if it suceeeds like...printoo example worked# Damn it failed, grab the whole traceback?except Exception:reasons.append(traceback.format_exc())# Do some other stuff here like...printI did other stufffor reason in reasons:print reason# If you want to raise a single exception that shows the traceback for# each exception, you can do this:class ChainedException(Exception):def __init__(self, msg):msg The following exceptions occurred:{}.format(msg)if reasons:raise ChainedException(.join(reasons))ChainedException的示例用法reasons []for i in range(5):try:raise Exception(Blah {}.format(i))except Exception:reasons.append(traceback.format_exc())if reasons:raise ChainedException(.join(reasons))输出Traceback (most recent call last):Fileok.py, line 17, in raise ChainedException(.join(reasons))__main__.ChainedException: The following exceptions occurred:Traceback (most recent call last):Fileok.py, line 12, in raise Exception(Blah {}.format(i))Exception: Blah 0Traceback (most recent call last):Fileok.py, line 12, in raise Exception(Blah {}.format(i))Exception: Blah 1Traceback (most recent call last):Fileok.py, line 12, in raise Exception(Blah {}.format(i))Exception: Blah 2Traceback (most recent call last):Fileok.py, line 12, in raise Exception(Blah {}.format(i))Exception: Blah 3Traceback (most recent call last):Fileok.py, line 12, in raise Exception(Blah {}.format(i))Exception: Blah 4编辑如果您真的只在乎从整个例外列表中提出一个例外则可以这样做import tracebackreason Nonefor x in y:ifexample in x:for tweet in tweetlist:# Trytry:twitter.update_status(statustweet)# Do some other stuff here if it suceeeds like...printoo example worked# Damn it failed, grab the whole traceback?except Exception:reason sys.exc_info() # Were not putting it in a list because you only care about one.# Do some other stuff here like...printI did other stuffif reason:raise reason[0], reason[1], reason[2]请注意这仅适用于Python2.x。 如果您使用的是Python 3.x则需要使用以下代码if reason:raise reason[1].with_traceback(reason[2])嗯很好的逻辑。然后如何创建异常以便主脚本意识到存在错误/将错误记录到文件中您实际上想看到什么记录只是一个或多个异常发生的通知还是所有回溯您只能对父脚本提出一个例外那应该是什么发生的实际异常之一还是指示一个或多个状态更新失败的一般性异常Ryflex Ive更新了我的答案以显示我认为您正在寻找的东西。恩我只是再次浏览了twitter API即错误代码并且当代码通过for循环时我不会收到不同的错误代码因此在这种情况下只抛出一个完整的完整回溯traceback.format_exc()效果会更好如我的原始文章所示。 ;我只是不知道如何将回溯发送回主脚本...在将原因设置如下后我会做raise reason吗香港专业教育学院搜索系统文档但我找不到任何有关exc_info()的每个部分做什么...Ryflex如果没有在堆栈上的任何地方处理异常则返回包含三个None值的元组。否则返回的值为(类型值回溯)。它们的含义是type获取正在处理的异常的异常类型(一个类对象) value获取异常参数(其关联值或要引发的第二个参数如果异常类型是类对象则始终为类实例) traceback获取一个traceback对象(请参见参考手册)该对象在最初发生异常的位置封装了调用堆栈。
http://www.huolong8.cn/news/66416/

相关文章:

  • 网站后台怎么建设网站建设推广服务合同范本
  • 伊利网站建设现在做网站建设的公司多么
  • 企业对电子商务网站的建设安徽省建设工程安全+协会网站
  • 通过企业画册宣传_网络网站建设_新闻媒体合作等方式_南宁云尚网络有限公司
  • 自适应网站导航是怎么做的宝安商城网站建设哪家便宜
  • 设计师万能导航网站app开发公司哪家好
  • 滁州网站建设hi444中国建盏形象设计大赛获奖名单
  • 开发个微网站多少钱分类目录网站怎么做
  • 支付的网站建设费整么做账如何向google提交网站
  • 手机网站建设可行性分析营销网站建设报价
  • 青岛网站建设公司好找吗网络营销推广的公司
  • 箱包网站建设策划报告摄影师都在哪些网站发布作品
  • 农资销售网站建设方案做课件网站
  • 电商网站的内容设计网站下面版权代码
  • 杭州做商务网站在线设计免费签名
  • 网站规划的主要内容针对大学生推广引流
  • 在安庆哪里可以做公司网站wordpress 嵌套回复
  • 长治企业网站建设价格wordpress+免费博客平台
  • 一般做外贸上什么网站好wordpress 添加到主屏
  • 怎么看 网站开发语言网站做不好一直不交付怎么办
  • 软件销售网站模板wordpress多媒体不显示
  • 扬州广陵区城乡建设局网站文章类网站源码
  • 漯河网站建设价格大连金州区房价
  • wordpress禁止升级西安官网seo价格
  • 网站结构分析昆明公司网站优化
  • 网站推广软件免费下载安装中国建设银行官网站企业年金
  • 建设银行官方个人网站快速学会做网站
  • 网站设计模板素材教育培训机构招生方案
  • 网站制作一个人可以做吗杭州市建设职业中心网站
  • 中国建设银行网站首页u盾登入工商注册网上核名