Python论坛  - 讨论区

标题:Re: [python-chinese] 能简单的在except里取得错误信息吗?

2005年11月21日 星期一 20:09

大熊 bearsprite at gmail.com
Mon Nov 21 20:09:26 HKT 2005

如果需要截获多个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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月21日 星期一 20:13

xu.shengyong zjxushengyong at hotmail.com
Mon Nov 21 20:13:23 HKT 2005

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051121/39870f5b/attachment-0001.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月21日 星期一 20:25

Qiangning Hong hongqn at gmail.com
Mon Nov 21 20:25:34 HKT 2005

xu.shengyong wrote:
>

拜托不要用这么长的标题

-- 
Qiangning Hong, Registered Linux User #396996
My Blog: http://www.hn.org/hongqn
RSS: http://feeds.feedburner.com/hongqn


[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月21日 星期一 21:47

Gerald Lee leejd80 at gmail.com
Mon Nov 21 21:47:53 HKT 2005

在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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月21日 星期一 22:21

刘鑫 march.liu at gmail.com
Mon Nov 21 22:21:28 HKT 2005

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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月22日 星期二 09:22

Gerald Lee leejd80 at gmail.com
Tue Nov 22 09:22:11 HKT 2005

在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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月22日 星期二 09:31

刘鑫 march.liu at gmail.com
Tue Nov 22 09:31:34 HKT 2005

扩展和嵌入都支持,以下是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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月22日 星期二 10:00

Gerald Lee leejd80 at gmail.com
Tue Nov 22 10:00:26 HKT 2005

在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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号