Re: python-chinese 摘要, 卷 49, 发布 251
"乱乱" <[email protected]> Thu, 24 Jan 2008 23:44:28 +0800
| Newsgroups | gmane.comp.python.chinese |
|---|---|
| Message-ID | <[email protected]> |
请教一个问题,我用的是ubuntu,按照demo安装quixote,总是不成功,有人安装成功的,能告诉你的E_mail,我向请教一下. 在08-1-24,[email protected] < [email protected]> 写道: > > 想在 python-chinese 邮件列表发言,请写信给: > [email protected] > > 要订阅或者退订列表,可以访问万维网地址: > http://python.cn/mailman/listinfo/python-chinese > 或者可以向: > [email protected] > 发送主题或者正文为'help'的邮件。 > > 您可以通过邮件地址: > [email protected] > 联系到此列表的管理员。 > > 当回信时,请给一个适当的标题,这样会比 "Re: > Contents of python-chinese digest..."更清楚明白。 > > > 本日主题: > > 1. Re: 如何 python实现下载功能 (Wayne) > 2. RE: > [公告]python-chinese的maillist服务将转移到googlegroup > python.cn将为pythoner提供更多其他服务 (tairan wang) > 3. > 用SocketServer.ThreadingTCPServer建的socket服务,能同时支持多少并发数 > (hanzg) > 4. 郁闷啊,wxpython调试 (ww) > 5. Re: 郁闷啊,wxpython调试 (zinicl) > 6. Re: 郁闷啊,wxpython调试 (Joey) > 7. Re: 郁闷啊,wxpython调试 (Joey) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Thu, 24 Jan 2008 13:02:58 +0800 > From: Wayne <[email protected]> > Subject: Re: [python-chinese] 如何 python实现下载功能 > To: [email protected] > Message-ID: > <[email protected]> > Content-Type: text/plain; charset="utf-8" > > 爬虫有协议的,而且爬虫一般也不会去下载链接的文件 > > 在08-1-24,小龙 <[email protected]> 写道: > > > > 防爬虫的话, 那他不想被搜索引擎搜录了? > > > > -- > > deSign thE fuTure > > > > _______________________________________________ > > python-chinese > > Post: send [email protected] > > Subscribe: send subscribe to [email protected] > > Unsubscribe: send unsubscribe to [email protected] > > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > > > -- > wayne > -------------- 下一部分 -------------- > 一个HTML附件被移除... > URL: > http://python.cn/pipermail/python-chinese/attachments/20080124/4a919774/attachment-0001.html > > ------------------------------ > > Message: 2 > Date: Thu, 24 Jan 2008 05:51:38 +0000 > From: tairan wang <[email protected]> > Subject: [python-chinese] RE: > [公告]python-chinese的maillist服务将转移到googlegroup > python.cn将为pythoner提供更多其他服务 > To: <[email protected]> > Message-ID: <[email protected]> > Content-Type: text/plain; charset="gb2312" > > > 必须要gmail用户才能加入论坛? > > 我用这个帐号发信,提示张贴错误。 > > > Date: Thu, 24 Jan 2008 11:22:18 +0800 > From: [email protected] > To: [email protected] > Subject: Re: [python-chinese] > [公告]python-chinese的maillist服务将转移到googlegroup python.cn将为pythoner提供更多其他服务 > > googlegroup貌似对其它非gmail邮箱的支持比较差! > > > 在08-1-24,Zoom. Quiet <[email protected]> 写道: > 2008/1/24 flyaflya <[email protected]>: > > 期待python.cn的blog > > ------------------------------ > > Message: 3 > Date: Thu, 24 Jan 2008 13:52:52 +0800 > From: hanzg <[email protected]> > Subject: [python-chinese] > 用SocketServer.ThreadingTCPServer建的socket服务,能同时支持多少并发数 > > To: [email protected] > Message-ID: <[email protected]> > Content-Type: text/plain; charset=GB2312 > > 正在学习python编程 > 用SocketServer.ThreadingTCPServer建了socket服务端.然后写了个客户端起1000 > 个线程去访问这个server > def test(): > sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) > sock.connect(('192.168.0.65', SERVER_PORT)) > sock.sendall('1234567890') > recvData = sock.recv(MAX_PACKET_SIZE) > print 'Recv from server', recvData > sock.close() > > if __name__ == '__main__': > for i in range(1000): > thread.start_new_thread(test) > time.sleep(0.1) > > 如果我在服务端的handle(self)中加入很小的延时函数,客户端就报连接拒绝 > "socket.error: (111, 'Connection refused')" > 我猜想是服务端的并发不够了,怎么才能增加server端的并发数?? > > > > ------------------------------ > > Message: 4 > Date: Thu, 24 Jan 2008 13:57:36 +0800 > From: ww <[email protected]> > Subject: [python-chinese] 郁闷啊,wxpython调试 > To: [email protected] > Message-ID: <[email protected]> > Content-Type: text/plain; charset="GB2312" > > 大家好: > > 请教一个问题,我正在学习wxPython,但是调试程序(在DOS状态下直接运行 > .pyw文件)时,出错信息显示在另一个白色小窗口里,并且一闪而过,啥也看不清 > 啊,烦劳哪位给指点一下。 > > > > ------------------------------ > > Message: 5 > Date: Thu, 24 Jan 2008 15:01:01 +0800 > From: zinicl <[email protected]> > Subject: Re: [python-chinese] 郁闷啊,wxpython调试 > To: [email protected] > Message-ID: > <[email protected]> > Content-Type: text/plain; charset="gb2312" > > if __name__ == '__main__': > app = App(redirect = False) > app.MainLoop() > > 在08-1-24,ww <[email protected]> 写道: > > > > 大家好: > > > > 请教一个问题,我正在学习wxPython,但是调试程序(在DOS状态下直接运行 > > .pyw文件)时,出错信息显示在另一个白色小窗口里,并且一闪而过,啥也看不清 > > 啊,烦劳哪位给指点一下。 > > > > _______________________________________________ > > python-chinese > > Post: send [email protected] > > Subscribe: send subscribe to [email protected] > > Unsubscribe: send unsubscribe to [email protected] > > Detail Info: http://python.cn/mailman/listinfo/python-chinese > -------------- 涓���ㄥ� -------------- > 一个HTML附件被移除... > URL: > http://python.cn/pipermail/python-chinese/attachments/20080124/cca15f4c/attachment-0001.html > > ------------------------------ > > Message: 6 > Date: Thu, 24 Jan 2008 15:10:23 +0800 > From: Joey <[email protected]> > Subject: Re: [python-chinese] 郁闷啊,wxpython调试 > To: [email protected] > Message-ID: > <[email protected]> > Content-Type: text/plain; charset="gb2312" > > 或者 python -i a.py > > > > 2008/1/24 zinicl <[email protected]>: > > > if __name__ == '__main__': > > app = App(redirect = False) > > app.MainLoop() > > > > 在08-1-24,ww < [email protected]> 写道: > > > > > 大家好: > > > > > > 请教一个问题,我正在学习wxPython,但是调试程序(在DOS状态下直接运行 > > > .pyw文件)时,出错信息显示在另一个白色小窗口里,并且一闪而过,啥也看不清 > > > 啊,烦劳哪位给指点一下。 > > > > > > _______________________________________________ > > > python-chinese > > > Post: send [email protected] > > > Subscribe: send subscribe to [email protected] > > > Unsubscribe: send unsubscribe to > [email protected] > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > > > > > _______________________________________________ > > python-chinese > > Post: send [email protected] > > Subscribe: send subscribe to [email protected] > > Unsubscribe: send unsubscribe to [email protected] > > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > > > -- > Best Regard, > Tang, Jiyu (Joey) > -------------- 涓���ㄥ� -------------- > 一个HTML附件被移除... > URL: > http://python.cn/pipermail/python-chinese/attachments/20080124/32086d08/attachment-0001.htm > > ------------------------------ > > Message: 7 > Date: Thu, 24 Jan 2008 15:10:52 +0800 > From: Joey <[email protected]> > Subject: Re: [python-chinese] 郁闷啊,wxpython调试 > To: [email protected] > Message-ID: > <[email protected]> > Content-Type: text/plain; charset="gb2312" > > 再或者 > > Boa Constructor > > 很不错噢 > > 2008/1/24 Joey <[email protected]>: > > > 或者 python -i a.py > > > > > > > > 2008/1/24 zinicl <[email protected]>: > > > > if __name__ == '__main__': > > > app = App(redirect = False) > > > app.MainLoop() > > > > > > 在08-1-24,ww < [email protected]> 写道: > > > > > > > 大家好: > > > > > > > > 请教一个问题,我正在学习wxPython,但是调试程序(在DOS状态下直接运行 > > > > .pyw文件)时,出错信息显示在另一个白色小窗口里,并且一闪而过,啥也看不清 > > > > 啊,烦劳哪位给指点一下。 > > > > > > > > _______________________________________________ > > > > python-chinese > > > > Post: send [email protected] > > > > Subscribe: send subscribe to [email protected] > > > > Unsubscribe: send unsubscribe to > [email protected] > > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > > > _______________________________________________ > > > python-chinese > > > Post: send [email protected] > > > Subscribe: send subscribe to [email protected] > > > Unsubscribe: send unsubscribe to > [email protected] > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > > -- > > Best Regard, > > Tang, Jiyu (Joey) > > > > > -- > Best Regard, > Tang, Jiyu (Joey) > -------------- 涓���ㄥ� -------------- > 一个HTML附件被移除... > URL: > http://python.cn/pipermail/python-chinese/attachments/20080124/25e0f922/attachment.html > > ------------------------------ > > _______________________________________________ > python-chinese mailing list > [email protected] > http://python.cn/mailman/listinfo/python-chinese > > 结束python-chinese 摘要, 卷 49, 发布 251 > *********************************************** > _______________________________________________ python-chinese Post: send [email protected] Subscribe: send subscribe to [email protected] Unsubscribe: send unsubscribe to [email protected] Detail Info: http://python.cn/mailman/listinfo/python-chinese