2005年11月21日 星期一 20:09
如果需要截获多个exception try: ...... except ImportError, e: ...... except IOError, e: ...... 或者 try: ...... except (IOError,ImportError), e: ...... 在05-11-21,shapsoft <shapsoft at 163.com> 写道: > > 大家好! > > 能简单的在except里取得错误信息吗? > 如以下的模型: > > try: > ........ > ........ > ........ > ...这里可能发生很多种错误 > except: > .....我想在这里得到错误信息 > -- 茫茫人海,你是我的最爱 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051121/78adc81c/attachment.htm
2005年11月21日 星期一 20:13
-------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051121/39870f5b/attachment-0001.html
2005年11月21日 星期一 20:25
xu.shengyong wrote: > 拜托不要用这么长的标题 -- Qiangning Hong, Registered Linux User #396996 My Blog: http://www.hn.org/hongqn RSS: http://feeds.feedburner.com/hongqn
2005年11月21日 星期一 21:47
在05-11-21,xu.shengyong <zjxushengyong at hotmail.com> 写道: > > 自己做接口吧,没有现成的,我一般直接用Python的数据结构了(对速度要求不高) -- > My Blog >> http://leejd.cndev.org > My QQ >> 9847243 > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051121/c61f42f3/attachment.htm
2005年11月21日 星期一 22:21
BOOST.Python.dict 详情请见BOOST文档 在 05-11-21,Gerald Lee<leejd80 at gmail.com> 写道: > > > > 在05-11-21,xu.shengyong <zjxushengyong at hotmail.com> 写道: > > > > > > > 自己做接口吧,没有现成的,我一般直接用Python的数据结构了(对速度要求不高) > > > > > -- > > My Blog >> http://leejd.cndev.org > > My QQ >> 9847243 > > _______________________________________________ > Python中文技术讨论邮件列表 > 发言: 发邮件到 python-chinese at lists.python.cn > 订阅: 发送 subscribe 到 python-chinese-request at lists.python.cn > 退订: 发送 unsubscribe 到 > python-chinese-request at lists.python.cn > 详细说明: http://python.cn/mailman/listinfo/python-chinese > > -- 欢迎访问: http://blog.csdn.net/ccat 刘鑫 March.Liu
2005年11月22日 星期二 09:22
在05-11-21,刘鑫 <march.liu at gmail.com> 写道: > > BOOST.Python.dict > 详情请见BOOST文档 > > 我记得boost是将C++的转为Python的,难道新版的可以将Python的转为C++的? -- My Blog >> http://leejd.cndev.org My QQ >> 9847243 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051122/306e7c6f/attachment.html
2005年11月22日 星期二 09:31
扩展和嵌入都支持,以下是BOOST中的DICT示例: using namespace boost::python; dict swap_object_dict(object target, dict d) { dict result = extract(target.attr("__dict__")); target.attr("__dict__") = d; return result; } -- 欢迎访问: http://blog.csdn.net/ccat 刘鑫 March.Liu
2005年11月22日 星期二 10:00
在05-11-22,刘鑫 <march.liu at gmail.com> 写道: > > 扩展和嵌入都支持,以下是BOOST中的DICT示例: > > using namespace boost::python; > dict swap_object_dict(object target, dict d) > { > dict result = extract(target.attr("__dict__")); > target.attr("__dict__") = d; > return result; > } > 看来得好好研究一下boost::python啊,以前只是简单的看了一下 -- My Blog >> http://leejd.cndev.org My QQ >> 9847243 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051122/19ad08a5/attachment.htm
Zeuux © 2025
京ICP备05028076号