Python论坛  - 讨论区

标题:[python-chinese] 这几天用twisted 做一个文件上传下载的程序,发现一问题请高手帮忙解决

2007年11月25日 星期日 23:33

littlesea littlesea wzhlittlesea在gmail.com
星期日 十一月 25 23:33:34 HKT 2007

ÎÊÌâÊÇÕâÑùµÄ£¬Èç¹ûͬʱÓм¸¸ö¿Í»§¶Ë´Ó·þÎñÆ÷ÉÏÏÂÔØ´óÎļþ£¬ÎÒдµÄ·þÎñÆ÷ºÃÏñ»á±»·¢ËÍÏ̶߳ÂËÀ
ͬʱֻ¿ÉÄÜÓÐÒ»¸öÏß³ÌÔÚæ×ÅÏÂÔØ£¬±ðµÄ¿Í»§¶Ë¶¼Á¬²»ÉÏ¡£


·¢ËÍÏ̴߳úÂ룬ÎÒ¹À¼ÆÊÇÎÒ²»Í£µÄ protocol.transport.write(z); ½²twistedµÄÏûÏ¢¶ÓÁÐÌîÂú£¬ÓÐûÓкõİ취¿ØÖÆ·¢Ë͵ÄËÙ¶È¡£
def sendfiletoclient(protocol):   #·¢ËÍÎļþµ½¿Í»§¶Ë

     while 1:
            if( not protocol.connected):
                  break
            z = protocol.f.read(4096);
            if len(z)>0:
                    protocol.transport.write(z);
            else:
                  break;
     protocol.f.close();



ÒÔÏÂÊÇÎҵķþÎñÆ÷´úÂë


#coding=utf-8
from twisted.internet import protocol, reactor
from twisted.python import threadable

from twisted.protocols import basic
from struct import *
import time
import os
class FingerProtocol(protocol.Protocol):
    def __init__(self):
        self.beginretrive = False;
        self.buf="";
        self.f=None;
        self.count=0;
        self.filesize=0;
        self.filename="";
    def connectionLost(self, reason):
        self.transport.loseConnection();
    def dataReceived(self, data):
         if(not self.beginretrive):
            self.buf =self.buf+data;
            print len(self.buf);
            if(len(self.buf)==40):
               begin,action,readsize,version  =  unpack("iili", self.buf
[0:16]);
               print begin,action,readsize,version;

               self.filesize = readsize;
               self.filename = self.buf[16:38]
               self.filename =
'C:/cooco/updown/down/'+self.buf[16:20]+'/'+self.buf[20:22]+'/'+self.buf[22:24]+'/'+self.buf[24:26]+'/'+
self.filename;
               self.beginretrive= True;
               self.buf ="";

               dir = os.path.dirname(self.filename)
               if not os.path.isdir(dir):
                  try:
                     os.makedirs(dir)
                  except:
                     pass

               if(os.path.exists( self.filename)):
                 size = os.path.getsize(self.filename);
                 if(action==0):
                    self.f=open( self.filename,'ab');
                 else:
                    self.f=open( self.filename,'rb');
               else:
                 size = 0;
                 self.f=open(self.filename,'wb');
               self.count = size;

               if(action==0):
                 begin=0x88
                 action=0
                 version=1
                 mm = pack("iili",begin,action,size,version);

                 self.f.seek(size);
                 self.transport.write(mm);
                 return;

               else:
                self.f.seek(readsize);
                reactor.callFromThread(sendfiletoclient, self)


            else:
                if(len(self.buf)>40):
                    self.transport.loseConnection()

         else:
            self.count = self.count +len(data)
            self.f.write(data);
            self.f.flush();

            if(self.count == self.filesize):
                self.transport.loseConnection();




class FingerFactory(protocol.ServerFactory):
    protocol = FingerProtocol


def sendfiletoclient(protocol):   #·¢ËÍÎļþµ½¿Í»§¶Ë

     while 1:
            if( not protocol.connected):
                  break
            z = protocol.f.read(4096);
            if len(z)>0:
                    protocol.transport.write(z);
            else:
                  break;
     protocol.f.close();

reactor.listenTCP(8881, FingerFactory())
reactor.run()
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20071125/9575085e/attachment.html 

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

2007年11月26日 星期一 00:09

Yingbo Qiu qiuyingbo在gmail.com
星期一 十一月 26 00:09:51 HKT 2007

新开一个线程

要么每个下载任务在传输一段数据后,把控制权交给另外一个调度器

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

2007年11月26日 星期一 11:51

littlesea littlesea wzhlittlesea在gmail.com
星期一 十一月 26 11:51:06 HKT 2007

ÎÒÊÇпªµÄỊ̈߳¬Ï̲߳»¶Ï·¢Êý¾Ý»á¶Âס£¬Äã¿´ÎҵĴúÂëû£¿

ÔÚ07-11-26£¬Yingbo Qiu <qiuyingbo在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
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20071126/6c1c4b5f/attachment.htm 

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

2007年11月26日 星期一 13:30

littlesea littlesea wzhlittlesea在gmail.com
星期一 十一月 26 13:30:07 HKT 2007

¶¥Ò»ÏÂ

ÔÚ07-11-26£¬littlesea littlesea <wzhlittlesea在gmail.com> дµÀ£º
>
> ÎÒÊÇпªµÄỊ̈߳¬Ï̲߳»¶Ï·¢Êý¾Ý»á¶Âס£¬Äã¿´ÎҵĴúÂëû£¿
>
> ÔÚ07-11-26£¬Yingbo Qiu <qiuyingbo在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
>
>
>
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20071126/9ac9a85d/attachment.html 

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

2007年11月26日 星期一 14:48

头太晕 torrycn在gmail.com
星期一 十一月 26 14:48:11 HKT 2007

ÎҲ²âÒ»ÏÂ,ÊÇ·ñ¿ÉÒÔÕâÑù,ÔÚÒ»¸öº¯Êý(¼ÙÉ躯ÊýÃûΪfuncA)ÖжÁÎļþ·¢ËÍ, ÿ´ÎÖ»¶Án¸ö×Ö½Ú, ·¢ËͺócallLaterÕâ¸öfuncA,
ÕâÑùÒ»Ö±µ½Õû¸öÎļþ·¢ËÍÍê±Ï...


ÔÚ07-11-26£¬littlesea littlesea <wzhlittlesea在gmail.com> дµÀ£º
>
> ÎÒÊÇпªµÄỊ̈߳¬Ï̲߳»¶Ï·¢Êý¾Ý»á¶Âס£¬Äã¿´ÎҵĴúÂëû£¿
>
> ÔÚ07-11-26£¬Yingbo Qiu <qiuyingbo在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/20071126/765e7da4/attachment.html 

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

2007年11月26日 星期一 19:55

littlesea littlesea wzhlittlesea在gmail.com
星期一 十一月 26 19:55:16 HKT 2007

ÎÒÒ²ÊÇÄãÕâÑùÏëÀ²£¬ÔÚ¹«Ë¾Ã»·¢ÊµÏÖ£¬ÎÒ²âÊÔÏ¿´¿´£¬»ØÍ·¸øÄã½á¹û¹þ¹þ¹þ

ÔÚ07-11-26£¬Í·Ì«ÔÎ <torrycn在gmail.com> дµÀ£º
>
> ÎҲ²âÒ»ÏÂ,ÊÇ·ñ¿ÉÒÔÕâÑù,ÔÚÒ»¸öº¯Êý(¼ÙÉ躯ÊýÃûΪfuncA)ÖжÁÎļþ·¢ËÍ, ÿ´ÎÖ»¶Án¸ö×Ö½Ú, ·¢ËͺócallLaterÕâ¸öfuncA,
> ÕâÑùÒ»Ö±µ½Õû¸öÎļþ·¢ËÍÍê±Ï...
>
>
> ÔÚ07-11-26£¬littlesea littlesea < wzhlittlesea在gmail.com> дµÀ£º
> >
> > ÎÒÊÇпªµÄỊ̈߳¬Ï̲߳»¶Ï·¢Êý¾Ý»á¶Âס£¬Äã¿´ÎҵĴúÂëû£¿
> >
> > ÔÚ07-11-26£¬Yingbo Qiu <qiuyingbo在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
> >
>
>
> _______________________________________________
> 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/20071126/4f48cda9/attachment.html 

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

2007年11月26日 星期一 21:56

头太晕 torrycn在gmail.com
星期一 十一月 26 21:56:04 HKT 2007

ÆÚ´ý

ÔÚ07-11-26£¬littlesea littlesea <wzhlittlesea在gmail.com> дµÀ£º
>
> ÎÒÒ²ÊÇÄãÕâÑùÏëÀ²£¬ÔÚ¹«Ë¾Ã»·¢ÊµÏÖ£¬ÎÒ²âÊÔÏ¿´¿´£¬»ØÍ·¸øÄã½á¹û¹þ¹þ¹þ
>
> ÔÚ07-11-26£¬Í·Ì«ÔÎ <torrycn在gmail.com> дµÀ£º
> >
> > ÎҲ²âÒ»ÏÂ,ÊÇ·ñ¿ÉÒÔÕâÑù,ÔÚÒ»¸öº¯Êý(¼ÙÉ躯ÊýÃûΪfuncA)ÖжÁÎļþ·¢ËÍ, ÿ´ÎÖ»¶Án¸ö×Ö½Ú, ·¢ËͺócallLaterÕâ¸öfuncA,
> > ÕâÑùÒ»Ö±µ½Õû¸öÎļþ·¢ËÍÍê±Ï...
> >
> >
> > ÔÚ07-11-26£¬littlesea littlesea < wzhlittlesea在gmail.com> дµÀ£º
> > >
> > > ÎÒÊÇпªµÄỊ̈߳¬Ï̲߳»¶Ï·¢Êý¾Ý»á¶Âס£¬Äã¿´ÎҵĴúÂëû£¿
> > >
> > > ÔÚ07-11-26£¬Yingbo Qiu <qiuyingbo在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
> > >
> >
> >
> > _______________________________________________
> > 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/20071126/8518f56d/attachment.htm 

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

2007年11月26日 星期一 23:37

littlesea littlesea wzhlittlesea在gmail.com
星期一 十一月 26 23:37:04 HKT 2007

ÔÎËÀ£¬ÓÃÏß³ÌͻȻÓÖºÃÀ²£¬¶¼²»ÖªµÀΪɶ

ÔÚ07-11-26£¬Í·Ì«ÔÎ <torrycn在gmail.com> дµÀ£º
>
> ÆÚ´ý
>
> ÔÚ07-11-26£¬littlesea littlesea <wzhlittlesea在gmail.com> дµÀ£º
> >
> > ÎÒÒ²ÊÇÄãÕâÑùÏëÀ²£¬ÔÚ¹«Ë¾Ã»·¢ÊµÏÖ£¬ÎÒ²âÊÔÏ¿´¿´£¬»ØÍ·¸øÄã½á¹û¹þ¹þ¹þ
> >
> > ÔÚ07-11-26£¬Í·Ì«ÔÎ < torrycn在gmail.com> дµÀ£º
> > >
> > > ÎҲ²âÒ»ÏÂ,ÊÇ·ñ¿ÉÒÔÕâÑù,ÔÚÒ»¸öº¯Êý(¼ÙÉ躯ÊýÃûΪfuncA)ÖжÁÎļþ·¢ËÍ, ÿ´ÎÖ»¶Án¸ö×Ö½Ú, ·¢ËͺócallLaterÕâ¸öfuncA,
> > > ÕâÑùÒ»Ö±µ½Õû¸öÎļþ·¢ËÍÍê±Ï...
> > >
> > >
> > > ÔÚ07-11-26£¬littlesea littlesea < wzhlittlesea在gmail.com> дµÀ£º
> > > >
> > > > ÎÒÊÇпªµÄỊ̈߳¬Ï̲߳»¶Ï·¢Êý¾Ý»á¶Âס£¬Äã¿´ÎҵĴúÂëû£¿
> > > >
> > > > ÔÚ07-11-26£¬Yingbo Qiu <qiuyingbo在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
> > > >
> > >
> > >
> > > _______________________________________________
> > > 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
> >
>
>
> _______________________________________________
> 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/20071126/f2a233e1/attachment.html 

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

2007年11月27日 星期二 09:47

littlesea littlesea wzhlittlesea在gmail.com
星期二 十一月 27 09:47:12 HKT 2007

ºóÀ´·¢ÏÖ·¢ÎļþÏÂÀ­£¬Èç¹ûÎļþ´óµÄ»°£¬°ÑÄÚ´æ¶¼³ÔµôÀ­»¹ÊÇ»áÓÐÎÊÌ⣬˵Ã÷TWISTEDµÄ·¢ËÍÁбíÄÚÈÝÌ«¶à£¬»áÒýÆðÒì³££¬ÎÊÌ⻹ÊÇû½â¾ö£¬Íû´ó¼Ò¸øµã²Î¿¼Òâ¼û

ÔÚ07-11-26£¬littlesea littlesea <wzhlittlesea在gmail.com> дµÀ£º
>
> ÔÎËÀ£¬ÓÃÏß³ÌͻȻÓÖºÃÀ²£¬¶¼²»ÖªµÀΪɶ
>
> ÔÚ07-11-26£¬Í·Ì«ÔÎ <torrycn在gmail.com> дµÀ£º
> >
> > ÆÚ´ý
> >
> > ÔÚ07-11-26£¬littlesea littlesea < wzhlittlesea在gmail.com> дµÀ£º
> > >
> > > ÎÒÒ²ÊÇÄãÕâÑùÏëÀ²£¬ÔÚ¹«Ë¾Ã»·¢ÊµÏÖ£¬ÎÒ²âÊÔÏ¿´¿´£¬»ØÍ·¸øÄã½á¹û¹þ¹þ¹þ
> > >
> > > ÔÚ07-11-26£¬Í·Ì«ÔÎ < torrycn在gmail.com> дµÀ£º
> > > >
> > > > ÎҲ²âÒ»ÏÂ,ÊÇ·ñ¿ÉÒÔÕâÑù,ÔÚÒ»¸öº¯Êý(¼ÙÉ躯ÊýÃûΪfuncA)ÖжÁÎļþ·¢ËÍ, ÿ´ÎÖ»¶Án¸ö×Ö½Ú,
> > > > ·¢ËͺócallLaterÕâ¸öfuncA, ÕâÑùÒ»Ö±µ½Õû¸öÎļþ·¢ËÍÍê±Ï...
> > > >
> > > >
> > > > ÔÚ07-11-26£¬littlesea littlesea < wzhlittlesea在gmail.com> дµÀ£º
> > > > >
> > > > > ÎÒÊÇпªµÄỊ̈߳¬Ï̲߳»¶Ï·¢Êý¾Ý»á¶Âס£¬Äã¿´ÎҵĴúÂëû£¿
> > > > >
> > > > > ÔÚ07-11-26£¬Yingbo Qiu <qiuyingbo在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
> > > > >
> > > >
> > > >
> > > > _______________________________________________
> > > > 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
> > >
> >
> >
> > _______________________________________________
> > 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/20071127/5be73e33/attachment.html 

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

2007年11月29日 星期四 10:03

littlesea littlesea wzhlittlesea在gmail.com
星期四 十一月 29 10:03:54 HKT 2007

Ìû×ÓÓÖ±»ÑÍûÀ­àË¡£¡£¡£¡£¡£¡£¡£¡£¡£

ÔÚ07-11-27£¬littlesea littlesea <wzhlittlesea在gmail.com> дµÀ£º
>
> ºóÀ´·¢ÏÖ·¢ÎļþÏÂÀ­£¬Èç¹ûÎļþ´óµÄ»°£¬°ÑÄÚ´æ¶¼³ÔµôÀ­»¹ÊÇ»áÓÐÎÊÌ⣬˵Ã÷TWISTEDµÄ·¢ËÍÁбíÄÚÈÝÌ«¶à£¬»áÒýÆðÒì³££¬ÎÊÌ⻹ÊÇû½â¾ö£¬Íû´ó¼Ò¸øµã²Î¿¼Òâ¼û
>
> ÔÚ07-11-26£¬littlesea littlesea <wzhlittlesea在gmail.com > дµÀ£º
> >
> > ÔÎËÀ£¬ÓÃÏß³ÌͻȻÓÖºÃÀ²£¬¶¼²»ÖªµÀΪɶ
> >
> > ÔÚ07-11-26£¬Í·Ì«ÔÎ <torrycn在gmail.com> дµÀ£º
> > >
> > > ÆÚ´ý
> > >
> > > ÔÚ07-11-26£¬littlesea littlesea < wzhlittlesea在gmail.com> дµÀ£º
> > > >
> > > > ÎÒÒ²ÊÇÄãÕâÑùÏëÀ²£¬ÔÚ¹«Ë¾Ã»·¢ÊµÏÖ£¬ÎÒ²âÊÔÏ¿´¿´£¬»ØÍ·¸øÄã½á¹û¹þ¹þ¹þ
> > > >
> > > > ÔÚ07-11-26£¬Í·Ì«ÔÎ < torrycn在gmail.com> дµÀ£º
> > > > >
> > > > > ÎҲ²âÒ»ÏÂ,ÊÇ·ñ¿ÉÒÔÕâÑù,ÔÚÒ»¸öº¯Êý(¼ÙÉ躯ÊýÃûΪfuncA)ÖжÁÎļþ·¢ËÍ, ÿ´ÎÖ»¶Án¸ö×Ö½Ú,
> > > > > ·¢ËͺócallLaterÕâ¸öfuncA, ÕâÑùÒ»Ö±µ½Õû¸öÎļþ·¢ËÍÍê±Ï...
> > > > >
> > > > >
> > > > > ÔÚ07-11-26£¬littlesea littlesea < wzhlittlesea在gmail.com> дµÀ£º
> > > > > >
> > > > > > ÎÒÊÇпªµÄỊ̈߳¬Ï̲߳»¶Ï·¢Êý¾Ý»á¶Âס£¬Äã¿´ÎҵĴúÂëû£¿
> > > > > >
> > > > > > ÔÚ07-11-26£¬Yingbo Qiu <qiuyingbo在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
> > > > > >
> > > > >
> > > > >
> > > > > _______________________________________________
> > > > > 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
> > > >
> > >
> > >
> > > _______________________________________________
> > > 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/20071129/302aa1ec/attachment-0001.htm 

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

2007年11月29日 星期四 13:36

头太晕 torrycn在gmail.com
星期四 十一月 29 13:36:55 HKT 2007

×îºÃ²»ÒªÓÃÏ̷߳¢¡£¡£¡£¶ÁÎļþʱ¿ÉÒÔÓÃỊ̈߳¬È»ºó¶Áµ½µÄÊý¾Ýreturn£¬ÔÚcallbackÀï·¢ËÍÊý¾Ý£¬È»ºóÔÙcallLaterÈ¥¶Á.
ÕâÑù¾Í¿ÉÒÔÈÃtwistedÓÐʱ¼ä°ÑÊý¾Ý·¢ËͳöÈ¥¡£Ò»Î¶µÄÔÚÏß³ÌÖз¢ËÍÊý¾Ý£¬²»ÈûËÀ²Å¹Ö¡£¡£¡£

ÔÚ07-11-27£¬littlesea littlesea <wzhlittlesea在gmail.com> дµÀ£º
>
> ºóÀ´·¢ÏÖ·¢ÎļþÏÂÀ­£¬Èç¹ûÎļþ´óµÄ»°£¬°ÑÄÚ´æ¶¼³ÔµôÀ­»¹ÊÇ»áÓÐÎÊÌ⣬˵Ã÷TWISTEDµÄ·¢ËÍÁбíÄÚÈÝÌ«¶à£¬»áÒýÆðÒì³££¬ÎÊÌ⻹ÊÇû½â¾ö£¬Íû´ó¼Ò¸øµã²Î¿¼Òâ¼û
>
> ÔÚ07-11-26£¬littlesea littlesea <wzhlittlesea在gmail.com > дµÀ£º
> >
> > ÔÎËÀ£¬ÓÃÏß³ÌͻȻÓÖºÃÀ²£¬¶¼²»ÖªµÀΪɶ
> >
> > ÔÚ07-11-26£¬Í·Ì«ÔÎ <torrycn在gmail.com> дµÀ£º
> > >
> > > ÆÚ´ý
> > >
> > > ÔÚ07-11-26£¬littlesea littlesea < wzhlittlesea在gmail.com> дµÀ£º
> > > >
> > > > ÎÒÒ²ÊÇÄãÕâÑùÏëÀ²£¬ÔÚ¹«Ë¾Ã»·¢ÊµÏÖ£¬ÎÒ²âÊÔÏ¿´¿´£¬»ØÍ·¸øÄã½á¹û¹þ¹þ¹þ
> > > >
> > > > ÔÚ07-11-26£¬Í·Ì«ÔÎ < torrycn在gmail.com> дµÀ£º
> > > > >
> > > > > ÎҲ²âÒ»ÏÂ,ÊÇ·ñ¿ÉÒÔÕâÑù,ÔÚÒ»¸öº¯Êý(¼ÙÉ躯ÊýÃûΪfuncA)ÖжÁÎļþ·¢ËÍ, ÿ´ÎÖ»¶Án¸ö×Ö½Ú,
> > > > > ·¢ËͺócallLaterÕâ¸öfuncA, ÕâÑùÒ»Ö±µ½Õû¸öÎļþ·¢ËÍÍê±Ï...
> > > > >
> > > > >
> > > > > ÔÚ07-11-26£¬littlesea littlesea < wzhlittlesea在gmail.com> дµÀ£º
> > > > > >
> > > > > > ÎÒÊÇпªµÄỊ̈߳¬Ï̲߳»¶Ï·¢Êý¾Ý»á¶Âס£¬Äã¿´ÎҵĴúÂëû£¿
> > > > > >
> > > > > > ÔÚ07-11-26£¬Yingbo Qiu <qiuyingbo在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
> > > > > >
> > > > >
> > > > >
> > > > > _______________________________________________
> > > > > 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
> > > >
> > >
> > >
> > > _______________________________________________
> > > 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/20071129/ec70686f/attachment.htm 

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

2007年11月30日 星期五 11:06

littlesea littlesea wzhlittlesea在gmail.com
星期五 十一月 30 11:06:26 HKT 2007

ÎÒÓÃCALLLATER»á³öÎÊÌ⣬ÄãÄܲ»ÄܰÉÄã´úÂëÌû³öÀ´ÎÒ¿´¿´

ÔÚ07-11-29£¬Í·Ì«ÔÎ <torrycn在gmail.com> дµÀ£º
>
> ×îºÃ²»ÒªÓÃÏ̷߳¢¡£¡£¡£¶ÁÎļþʱ¿ÉÒÔÓÃỊ̈߳¬È»ºó¶Áµ½µÄÊý¾Ýreturn£¬ÔÚcallbackÀï·¢ËÍÊý¾Ý£¬È»ºóÔÙcallLaterÈ¥¶Á.
> ÕâÑù¾Í¿ÉÒÔÈÃtwistedÓÐʱ¼ä°ÑÊý¾Ý·¢ËͳöÈ¥¡£Ò»Î¶µÄÔÚÏß³ÌÖз¢ËÍÊý¾Ý£¬²»ÈûËÀ²Å¹Ö¡£¡£¡£
>
> ÔÚ07-11-27£¬littlesea littlesea < wzhlittlesea在gmail.com> дµÀ£º
> >
> > ºóÀ´·¢ÏÖ·¢ÎļþÏÂÀ­£¬Èç¹ûÎļþ´óµÄ»°£¬°ÑÄÚ´æ¶¼³ÔµôÀ­»¹ÊÇ»áÓÐÎÊÌ⣬˵Ã÷TWISTEDµÄ·¢ËÍÁбíÄÚÈÝÌ«¶à£¬»áÒýÆðÒì³££¬ÎÊÌ⻹ÊÇû½â¾ö£¬Íû´ó¼Ò¸øµã²Î¿¼Òâ¼û
> >
> >
> > ÔÚ07-11-26£¬littlesea littlesea < wzhlittlesea在gmail.com > дµÀ£º
> > >
> > > ÔÎËÀ£¬ÓÃÏß³ÌͻȻÓÖºÃÀ²£¬¶¼²»ÖªµÀΪɶ
> > >
> > > ÔÚ07-11-26£¬Í·Ì«ÔÎ <torrycn在gmail.com> дµÀ£º
> > > >
> > > > ÆÚ´ý
> > > >
> > > > ÔÚ07-11-26£¬littlesea littlesea < wzhlittlesea在gmail.com> дµÀ£º
> > > > >
> > > > > ÎÒÒ²ÊÇÄãÕâÑùÏëÀ²£¬ÔÚ¹«Ë¾Ã»·¢ÊµÏÖ£¬ÎÒ²âÊÔÏ¿´¿´£¬»ØÍ·¸øÄã½á¹û¹þ¹þ¹þ
> > > > >
> > > > > ÔÚ07-11-26£¬Í·Ì«ÔÎ < torrycn在gmail.com> дµÀ£º
> > > > > >
> > > > > > ÎҲ²âÒ»ÏÂ,ÊÇ·ñ¿ÉÒÔÕâÑù,ÔÚÒ»¸öº¯Êý(¼ÙÉ躯ÊýÃûΪfuncA)ÖжÁÎļþ·¢ËÍ, ÿ´ÎÖ»¶Án¸ö×Ö½Ú,
> > > > > > ·¢ËͺócallLaterÕâ¸öfuncA, ÕâÑùÒ»Ö±µ½Õû¸öÎļþ·¢ËÍÍê±Ï...
> > > > > >
> > > > > >
> > > > > > ÔÚ07-11-26£¬littlesea littlesea < wzhlittlesea在gmail.com> дµÀ£º
> > > > > > >
> > > > > > > ÎÒÊÇпªµÄỊ̈߳¬Ï̲߳»¶Ï·¢Êý¾Ý»á¶Âס£¬Äã¿´ÎҵĴúÂëû£¿
> > > > > > >
> > > > > > > ÔÚ07-11-26£¬Yingbo Qiu <qiuyingbo在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
> > > > > > >
> > > > > >
> > > > > >
> > > > > > _______________________________________________
> > > > > > 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
> > > > >
> > > >
> > > >
> > > > _______________________________________________
> > > > 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
> >
>
>
> _______________________________________________
> 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/20071130/1c3fdba9/attachment.htm 

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

2007年11月30日 星期五 11:43

头太晕 torrycn在gmail.com
星期五 十一月 30 11:43:29 HKT 2007

˵˵Äã»á³öʲôÎÊÌâ?

ÔÚ07-11-30£¬littlesea littlesea <wzhlittlesea在gmail.com> дµÀ£º
>
> ÎÒÓÃCALLLATER»á³öÎÊÌ⣬ÄãÄܲ»ÄܰÉÄã´úÂëÌû³öÀ´ÎÒ¿´¿´
>
> ÔÚ07-11-29£¬Í·Ì«ÔÎ <torrycn在gmail.com> дµÀ£º
> >
> > ×îºÃ²»ÒªÓÃÏ̷߳¢¡£¡£¡£¶ÁÎļþʱ¿ÉÒÔÓÃỊ̈߳¬È»ºó¶Áµ½µÄÊý¾Ýreturn£¬ÔÚcallbackÀï·¢ËÍÊý¾Ý£¬È»ºóÔÙcallLaterÈ¥¶Á.
> > ÕâÑù¾Í¿ÉÒÔÈÃtwistedÓÐʱ¼ä°ÑÊý¾Ý·¢ËͳöÈ¥¡£Ò»Î¶µÄÔÚÏß³ÌÖз¢ËÍÊý¾Ý£¬²»ÈûËÀ²Å¹Ö¡£¡£¡£
> >
> > ÔÚ07-11-27£¬littlesea littlesea < wzhlittlesea在gmail.com> дµÀ£º
> > >
> > > ºóÀ´·¢ÏÖ·¢ÎļþÏÂÀ­£¬Èç¹ûÎļþ´óµÄ»°£¬°ÑÄÚ´æ¶¼³ÔµôÀ­»¹ÊÇ»áÓÐÎÊÌ⣬˵Ã÷TWISTEDµÄ·¢ËÍÁбíÄÚÈÝÌ«¶à£¬»áÒýÆðÒì³££¬ÎÊÌ⻹ÊÇû½â¾ö£¬Íû´ó¼Ò¸øµã²Î¿¼Òâ¼û
> > >
> > >
> > > ÔÚ07-11-26£¬littlesea littlesea < wzhlittlesea在gmail.com > дµÀ£º
> > > >
> > > > ÔÎËÀ£¬ÓÃÏß³ÌͻȻÓÖºÃÀ²£¬¶¼²»ÖªµÀΪɶ
> > > >
> > > > ÔÚ07-11-26£¬Í·Ì«ÔÎ <torrycn在gmail.com> дµÀ£º
> > > > >
> > > > > ÆÚ´ý
> > > > >
> > > > > ÔÚ07-11-26£¬littlesea littlesea < wzhlittlesea在gmail.com> дµÀ£º
> > > > > >
> > > > > > ÎÒÒ²ÊÇÄãÕâÑùÏëÀ²£¬ÔÚ¹«Ë¾Ã»·¢ÊµÏÖ£¬ÎÒ²âÊÔÏ¿´¿´£¬»ØÍ·¸øÄã½á¹û¹þ¹þ¹þ
> > > > > >
> > > > > > ÔÚ07-11-26£¬Í·Ì«ÔÎ < torrycn在gmail.com> дµÀ£º
> > > > > > >
> > > > > > > ÎҲ²âÒ»ÏÂ,ÊÇ·ñ¿ÉÒÔÕâÑù,ÔÚÒ»¸öº¯Êý(¼ÙÉ躯ÊýÃûΪfuncA)ÖжÁÎļþ·¢ËÍ, ÿ´ÎÖ»¶Án¸ö×Ö½Ú,
> > > > > > > ·¢ËͺócallLaterÕâ¸öfuncA, ÕâÑùÒ»Ö±µ½Õû¸öÎļþ·¢ËÍÍê±Ï...
> > > > > > >
> > > > > > >
> > > > > > > ÔÚ07-11-26£¬littlesea littlesea < wzhlittlesea在gmail.com> дµÀ£º
> > > > > > > >
> > > > > > > > ÎÒÊÇпªµÄỊ̈߳¬Ï̲߳»¶Ï·¢Êý¾Ý»á¶Âס£¬Äã¿´ÎҵĴúÂëû£¿
> > > > > > > >
> > > > > > > > ÔÚ07-11-26£¬Yingbo Qiu <qiuyingbo在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
> > > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > _______________________________________________
> > > > > > > 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
> > > > > >
> > > > >
> > > > >
> > > > > _______________________________________________
> > > > > 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
> > >
> >
> >
> > _______________________________________________
> > 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/20071130/f4a253df/attachment.html 

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

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

    你的回复:

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

    Zeuux © 2025

    京ICP备05028076号