2007年11月25日 星期日 23:33
ÎÊÌâÊÇÕâÑùµÄ£¬Èç¹ûͬʱÓм¸¸ö¿Í»§¶Ë´Ó·þÎñÆ÷ÉÏÏÂÔØ´óÎļþ£¬ÎÒдµÄ·þÎñÆ÷ºÃÏñ»á±»·¢ËÍÏ̶߳ÂËÀ
ͬʱֻ¿ÉÄÜÓÐÒ»¸öÏß³ÌÔÚæ×ÅÏÂÔØ£¬±ðµÄ¿Í»§¶Ë¶¼Á¬²»ÉÏ¡£
·¢ËÍÏ̴߳úÂ룬ÎÒ¹À¼ÆÊÇÎÒ²»Í£µÄ 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
2007年11月26日 星期一 00:09
新开一个线程 要么每个下载任务在传输一段数据后,把控制权交给另外一个调度器
2007年11月26日 星期一 11:51
ÎÒÊÇпªµÄỊ̈߳¬Ï̲߳»¶Ï·¢Êý¾Ý»á¶Âס£¬Äã¿´ÎҵĴúÂëû£¿ ÔÚ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
2007年11月26日 星期一 13:30
¶¥Ò»Ï ÔÚ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
2007年11月26日 星期一 14:48
ÎҲ²âÒ»ÏÂ,ÊÇ·ñ¿ÉÒÔÕâÑù,ÔÚÒ»¸öº¯Êý(¼ÙÉ躯ÊýÃûΪ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
2007年11月26日 星期一 19:55
ÎÒÒ²ÊÇÄãÕâÑùÏëÀ²£¬ÔÚ¹«Ë¾Ã»·¢ÊµÏÖ£¬ÎÒ²âÊÔÏ¿´¿´£¬»ØÍ·¸øÄã½á¹û¹þ¹þ¹þ ÔÚ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
2007年11月26日 星期一 21:56
ÆÚ´ý ÔÚ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
2007年11月26日 星期一 23:37
ÔÎËÀ£¬ÓÃÏß³ÌͻȻÓÖºÃÀ²£¬¶¼²»ÖªµÀΪɶ ÔÚ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
2007年11月27日 星期二 09:47
ºóÀ´·¢ÏÖ·¢ÎļþÏÂÀ£¬Èç¹ûÎļþ´óµÄ»°£¬°ÑÄÚ´æ¶¼³ÔµôÀ»¹ÊÇ»áÓÐÎÊÌ⣬˵Ã÷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
2007年11月29日 星期四 10:03
Ìû×ÓÓÖ±»ÑÍûÀàË¡£¡£¡£¡£¡£¡£¡£¡£¡£ ÔÚ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
2007年11月29日 星期四 13:36
×îºÃ²»ÒªÓÃÏ̷߳¢¡£¡£¡£¶ÁÎļþʱ¿ÉÒÔÓÃỊ̈߳¬È»ºó¶Áµ½µÄÊý¾Ý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
2007年11月30日 星期五 11:06
ÎÒÓÃ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
2007年11月30日 星期五 11:43
˵˵Äã»á³öʲôÎÊÌâ? ÔÚ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
Zeuux © 2025
京ICP备05028076号