Python论坛  - 讨论区

标题:[python-chinese] help

2006年10月29日 星期日 10:08

126 vitaminmiao在126.com
星期日 十月 29 10:08:41 HKT 2006

----- Original Message -----
From: <python-chinese-request在lists.python.cn>
To: <python-chinese在lists.python.cn>
Sent: Friday, October 27, 2006 10:51 PM
Subject: python-chinese 摘要, 卷 34, 发布 166


> 想在 python-chinese 邮件列表发言,请写信给:
> python-chinese在lists.python.cn
>
> 要订阅或者退订列表,可以访问万维网地址:
> http://python.cn/mailman/listinfo/python-chinese
> 或者可以向:
> python-chinese-request在lists.python.cn
> 发送主题或者正文为'help'的邮件。
>
> 您可以通过邮件地址:
> python-chinese-owner在lists.python.cn
> 联系到此列表的管理员。
>
> 当回信时,请给一个适当的标题,这样会比 "Re:
> Contents of python-chinese digest..."更清楚明白。
>
>
> 本日主题:
>
>    1. Re: Ubuntu
>       Edgy发布,将在11月2号在北京举办party庆祝。 (jeacho)
>    2. Re: 一个URL编码的问题 (Xupeng Yun)
>    3. Re: 一个URL编码的问题 (3751)
>    4. 问题 (英)
>    5. Re: 问题 (lu)
>    6. 排序二叉树BSTree类 (英)
>    7. Re: 【ot】测试自己有没有加入列表 (fdcn)
>    8. Re: 排序二叉树BSTree类 (Linker Lin)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Sat, 28 Oct 2006 12:03:16 +0800
> From: "jeacho" <jeacho在126.com>
> Subject: Re: [python-chinese] Ubuntu
> Edgy发布,将在11月2号在北京举办party庆祝。
> To: <python-chinese在lists.python.cn>
> Message-ID: <001701c6fa45$ff2d8ae0$0d01a8c0在b8d6990193e243a>
> Content-Type: text/plain; charset="utf-8"
>
> 我还有N张5.10和6.06的光盘,可以贡献给大家……
>
> 要不放在我那也浪费了,不过都有6.10了我那些也没有什么用了:(
>
> ps:习惯的redhat系列的对ubuntu还真有点摸不着头脑的感觉。
>
> ----- Original Message -----
> From: "shhgs" <shhgs.efhilt在gmail.com>
> To: <python-chinese在lists.python.cn>
> Sent: Saturday, October 28, 2006 11:47 AM
> Subject: Re: [python-chinese]Ubuntu Edgy发布,将在11月2号在北京举办party庆
祝。
>
>
> > 问一下,这个ubuntu怎么配置。
> >
> > 换了ubuntu之后,发现居然连linux都不会用了。useradd之后,没有创建home
> > dir。/etc/目录里面没有inittab,连tty都没有了,反正就是不习惯。
> >
> >
> >
> > On 10/27/06, ZhengPeng Hou <zhengpeng-hou在ubuntu.com> wrote:
> >> On Fri, Oct 27, 2006 at 04:25:35PM +0800, comestr wrote:
> >> > 报名有什么条件没有?
> >> > 网页上好像是谁都可以去
> >>  没错,谁都可以去。
> >> > limodou wrote:
> >> > >> 好哪! Amy 会到场嘛?!
> >>  这次的活动是我和amy发起的,所以她也会到的
> >> > >> 应该是中国北京的首次 Ubuntu Realease Party...
> >> > >>
> >> > >>
> >> > >
> >> > > 这个时间我将正在出差中,去不了啊。不过也有些晚了。
> >> 选择这个时间主要是考虑mark正好在北京。
> >> > >
> >> > >
> >> >
> >> >
> >> > _______________________________________________
> >> > python-chinese
> >> > Post: send python-chinese在lists.python.cn
> >> > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> >> > Unsubscribe: send unsubscribe to
python-chinese-request在lists.python.cn
> >> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >>
> >>
> >> -----BEGIN PGP SIGNATURE-----
> >> Version: GnuPG v1.4.3 (GNU/Linux)
> >>
> >> iD8DBQFFQdeAJrhDLBNiZtwRAhjlAJ9CLi2CRlIxVkUC3yeXdw1CAAwsAgCfY4y0
> >> Oo3+h75qgRBRwY5DOqdwhEc=
> >> =Jj6G
> >> -----END PGP SIGNATURE-----
> >>
> >>
> >> _______________________________________________
> >> python-chinese
> >> Post: send python-chinese在lists.python.cn
> >> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> >> Unsubscribe: send unsubscribe to
python-chinese-request在lists.python.cn
> >> Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >>
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese在lists.python.cn
> > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
> ------------------------------
>
> Message: 2
> Date: Sat, 28 Oct 2006 12:07:42 +0800
> From: "Xupeng Yun" <recordus在gmail.com>
> Subject: Re: [python-chinese] 一个URL编码的问题
> To: python-chinese在lists.python.cn
> Message-ID:
> <6d9d09e00610272107g55ec00bem976be8a8b724e6a0在mail.gmail.com>
> Content-Type: text/plain; charset="utf-8"
>
> 2006/10/28, 3751 <lwm3751在gmail.com>:
> >
> > 俺写的一段代码可以完成你要的功能
> > #coding=gbk
> > import urllib
> > import urlparse
> > url = 'http://www.test.org/中文/测试.html'
> > scheme, netloc, url, query, fragment = urlparse.urlsplit(url)
> > url = urllib.quote(url)
> > url = urlparse.urlunsplit((scheme, netloc, url, query, fragment))
> > print url
> >
>
> 嗯,这个方法比我的好。
>
>
> --
> I like Python & Linux.
> Blog: http://recordus.cublog.cn
> -------------- 下一部分 --------------
> 一个HTML附件被移除...
> URL:
http://python.cn/pipermail/python-chinese/attachments/20061028/306fba94/atta
chment-0001.html
>
> ------------------------------
>
> Message: 3
> Date: Sat, 28 Oct 2006 12:25:25 +0800
> From: 3751 <lwm3751在gmail.com>
> Subject: Re: [python-chinese] 一个URL编码的问题
> To: python-chinese在lists.python.cn
> Message-ID:
> <32fdbab30610272125u7a3dd5cbo9f16247354360ab1在mail.gmail.com>
> Content-Type: text/plain; charset=UTF-8; format=flowed
>
> 想了一下还应该加上以下两句才对
> query = urllib.quote(query)
> fragment = urllib.quote(fragment)
>
> ------------------------------
>
> Message: 4
> Date: Sat, 28 Oct 2006 12:29:12 +0800
> From: 英 <erying1985在163.com>
> Subject: [python-chinese] 问题
> To: "python-chinese" <python-chinese在lists.python.cn>
> Message-ID: <002b01c6fa49$9ebcd590$4599fd0a在fab399524c42490>
> Content-Type: text/plain; charset="gb2312"
>
> 如何删除一个方法?
> -------------- 涓���ㄥ� --------------
> 一个HTML附件被移除...
> URL:
http://python.cn/pipermail/python-chinese/attachments/20061028/c570f929/atta
chment.html
>
> ------------------------------
>
> Message: 5
> Date: Sat, 28 Oct 2006 12:47:40 +0800
> From: lu <self.lu在gmail.com>
> Subject: Re: [python-chinese] 问题
> To: python-chinese在lists.python.cn
> Message-ID:
> <203bb9c0610272147m717d6956h4b85090521b8a05在mail.gmail.com>
> Content-Type: text/plain; charset=GB2312; format=flowed
>
> >>> def Func(): pass
> ...
> >>> Func
> 
> >>> del Func
> >>> Func
> Traceback (most recent call last):
>   File "", line 1, in ?
> NameError: name 'Func' is not defined
> >>>
>
>
> On 10/28/06, 英 <erying1985在163.com> wrote:
> >
> >
> > 如何删除一个方法?
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese在lists.python.cn
> > Subscribe: send subscribe to
> > python-chinese-request在lists.python.cn
> > Unsubscribe: send unsubscribe to
> > python-chinese-request在lists.python.cn
> > Detail Info:
> > http://python.cn/mailman/listinfo/python-chinese
> >
>
> ------------------------------
>
> Message: 6
> Date: Sat, 28 Oct 2006 13:20:16 +0800
> From: 英 <erying1985在163.com>
> Subject: [python-chinese] 排序二叉树BSTree类
> To: "python-chinese" <python-chinese在lists.python.cn>
> Message-ID: <000801c6fa50$c0e26cf0$4599fd0a在fab399524c42490>
> Content-Type: text/plain; charset="gb2312"
>
> 帮一下忙写一个排序二叉树BSTree类
> -------------- 涓���ㄥ� --------------
> 一个HTML附件被移除...
> URL:
http://python.cn/pipermail/python-chinese/attachments/20061028/4302194d/atta
chment.htm
>
> ------------------------------
>
> Message: 7
> Date: Sat, 28 Oct 2006 13:40:52 +0800
> From: fdcn <fdcn64在gmail.com>
> Subject: Re: [python-chinese]
> 【ot】测试自己有没有加入列表
> To: python-chinese在lists.python.cn
> Message-ID:
> <66098b580610272240p765fd6cwa0a398fceb334bfd在mail.gmail.com>
> Content-Type: text/plain; charset="utf-8"
>
> retest
>
> On 10/27/06, 风向标 <vaneoooo在gmail.com> wrote:
> >
> > test
> >
> > 在06-10-27,yang luo <antoine.smile在gmail.com> 写道:
> > >
> > > 以及是不是摘要模式。
> > > 看到请回复。谢谢
> > >
> > > _______________________________________________
> > > python-chinese
> > > Post: send python-chinese在lists.python.cn
> > > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > > Unsubscribe: send unsubscribe to
> > > python-chinese-request在lists.python.cn
> > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > >
> >
> >
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese在lists.python.cn
> > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >
> -------------- 下一部分 --------------
> 一个HTML附件被移除...
> URL:
http://python.cn/pipermail/python-chinese/attachments/20061028/b36cc69e/atta
chment-0001.html
>
> ------------------------------
>
> Message: 8
> Date: Sat, 28 Oct 2006 13:51:34 +0800
> From: "Linker Lin" <linkerlin88在gmail.com>
> Subject: Re: [python-chinese] 排序二叉树BSTree类
> To: python-chinese在lists.python.cn
> Message-ID:
> <2300acfb0610272251o5daeaf5ek479c5652fd60f0a7在mail.gmail.com>
> Content-Type: text/plain; charset="utf-8"
>
> ?
>
>
> On 10/28/06, 英 <erying1985在163.com> wrote:
> >
> >  帮一下忙写一个排序二叉树BSTree类
> >
> >
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese在lists.python.cn
> > Subscribe: send subscribe to python-chinese-request在lists.python.cn
> > Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >
>
>
>
> --
> Linker M Lin
> linkerlin88在gmail.com
>   ※※※※※※※※※
>   ※※我思故我在※※
>   ※※※※※※※※※
> -------------- 下一部分 --------------
> 一个HTML附件被移除...
> URL:
http://python.cn/pipermail/python-chinese/attachments/20061028/e90e9932/atta
chment.htm
>
> ------------------------------
>
> _______________________________________________
> python-chinese mailing list
> python-chinese在lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
>
> 结束python-chinese 摘要, 卷 34, 发布 166
> ***********************************************
>




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

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

    你的回复:

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

    Zeuux © 2025

    京ICP备05028076号