2006年06月12日 星期一 20:49
我用pygame写了个小程序,其中用到pygame.font.Font,并在开始时写了: if not pygame.font: print "Warning, fonts disabled" 程序在python环境下运行正常。 采用py2exe打包,setup文件如下: from distutils.core import setup import py2exe setup(console = ['calc24p.py']) 生成的exe文件执行后出现如下情况: RuntimeError : default font not found. 但Warning, fonts disabled的语句并未出现。 不知何解,故而求教,十分感谢! -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060612/2715b8af/attachment.htm
2006年06月12日 星期一 21:51
用到的模块最好都显示地 import 一下
2006年06月12日 星期一 22:00
把pygame用到的字体包进去。 On 6/12/06, ONE_Fox <onefox.fox at gmail.com> wrote: > > 用到的模块最好都显示地 import 一下 > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -- 考研还是工作 哎... ! http://codeplayer.blogbus.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060612/ccecdef9/attachment.html
2006年06月12日 星期一 22:18
可以把pygame用的默认(如果你没指定的话)字体拷贝到你程序的目录下,然后一起打包进去。 貌似问过几次了。 On 6/12/06, yi huang <yi.codeplayer at gmail.com> wrote: > > 把pygame用到的字体包进去。 > > On 6/12/06, ONE_Fox <onefox.fox at gmail.com> wrote: > > > > 用到的模块最好都显示地 import 一下 > > > > _______________________________________________ > > python-chinese > > Post: send python-chinese at lists.python.cn > > Subscribe: send subscribe to python-chinese-request at lists.python.cn > > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > > > > -- > 考研还是工作 哎... ! > http://codeplayer.blogbus.com/ > -- 考研还是工作 哎... ! http://codeplayer.blogbus.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060612/8cc4b279/attachment.htm
2006年06月13日 星期二 19:29
很感谢二位的指点。 不过很可惜我还是没有解决这个问题。。。。。 因为在python环境下可以正常运行,所以我想import应该没有问题。(我也试过import pygame.font,问题依旧) 用pygame.font.get_default_font()的函数,找到了默认字库是freesansbold.ttf,并把它拷到程序目录下然后打包,但问题还在,不知是否还需要添加什么命令在setup.py中?请yi huang指教。 看到一位仁兄有相似的问题,后来将pygame.font.Font()改成pygame.font.SysFont()从而解决了问题。不过我照做之后,问题仍然悬而未决,并报pygame/sysfont.pyc的错,进入sysfont.py查找,发现其中也是用了pygame.font.Font()的语句。 故再次求教,望详。。。再次感谢! 2006/6/12, yi huang <yi.codeplayer at gmail.com>: > > 可以把pygame用的默认(如果你没指定的话)字体拷贝到你程序的目录下,然后一起打包进去。 > 貌似问过几次了。 > > > On 6/12/06, yi huang <yi.codeplayer at gmail.com> wrote: > > > > 把pygame用到的字体包进去。 > > > > On 6/12/06, ONE_Fox <onefox.fox at gmail.com> wrote: > > > > > > 用到的模块最好都显示地 import 一下 > > > > > > _______________________________________________ > > > python-chinese > > > Post: send python-chinese at lists.python.cn > > > Subscribe: send subscribe to python-chinese-request at lists.python.cn > > > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > > > -- > > 考研还是工作 哎... ! > > http://codeplayer.blogbus.com/ > > > > > > -- > 考研还是工作 哎... ! > http://codeplayer.blogbus.com/ > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060613/e39a9bac/attachment.htm
2006年06月14日 星期三 02:02
给你看下我是怎么做的吧: 打包的程序里: data_files=[("media", [..."media/freesansbold.ttf"....]),] 使用初始化font的时候显式指定字体的路径: font = pygame.font.Font('media/freesansbold.ttf', 40) On 6/13/06, Chao Xiong <chaox.maillist at gmail.com> wrote: > > > 很感谢二位的指点。 不过很可惜我还是没有解决这个问题。。。。。 > > 因为在python环境下可以正常运行,所以我想import应该没有问题。(我也试过import pygame.font,问题依旧) > > 用pygame.font.get_default_font()的函数,找到了默认字库是freesansbold.ttf,并把它拷到程序目录下然后打包,但问题还在,不知是否还需要添加什么命令在setup.py中?请yi > huang指教。 > > > 看到一位仁兄有相似的问题,后来将pygame.font.Font()改成pygame.font.SysFont()从而解决了问题。不过我照做之后,问题仍然悬而未决,并报pygame/sysfont.pyc的错,进入sysfont.py查找,发现其中也是用了pygame.font.Font()的语句。 > > 故再次求教,望详。。。再次感谢! > > > > 2006/6/12, yi huang <yi.codeplayer at gmail.com>: > > > > 可以把pygame用的默认(如果你没指定的话)字体拷贝到你程序的目录下,然后一起打包进去。 > 貌似问过几次了。 > > > On 6/12/06, yi huang <yi.codeplayer at gmail.com > wrote: > > > > 把pygame用到的字体包进去。 > > > > On 6/12/06, ONE_Fox <onefox.fox at gmail.com > wrote: > > > > > > 用到的模块最好都显示地 import 一下 > > > > > > _______________________________________________ > > > python-chinese > > > Post: send python-chinese at lists.python.cn > > > Subscribe: send subscribe to python-chinese-request at lists.python.cn > > > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > > > -- > > 考研还是工作 哎... ! > > http://codeplayer.blogbus.com/ > > > > > > -- > 考研还是工作 哎... ! > http://codeplayer.blogbus.com/ > > _______________________________________________ > > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -- 考研还是工作 哎... ! http://codeplayer.blogbus.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060614/ee43c9c4/attachment.htm
2006年06月14日 星期三 08:56
嗯,好的,谢谢啦,解决了~ 写成font = pygame.font.Font('freesansbold.ttf', 40) 然后把freesansbold.ttf拷到程序目录就行。 可是还有更好的解决办法么~?? 还有,为什么写font = pygame.font.Font(None, 40)时,在python环境下可以正常运行,而打包了就不行呢? 呵呵,我的问题比较多~~不要嫌麻烦~再谢一次~! 2006/6/14, yi huang <yi.codeplayer at gmail.com>: > > 给你看下我是怎么做的吧: > 打包的程序里: > data_files=[("media", [..."media/freesansbold.ttf"....]),] > 使用初始化font的时候显式指定字体的路径: > font = pygame.font.Font('media/freesansbold.ttf', 40) > > > On 6/13/06, Chao Xiong <chaox.maillist at gmail.com> wrote: > > > > > > 很感谢二位的指点。 不过很可惜我还是没有解决这个问题。。。。。 > > > > 因为在python环境下可以正常运行,所以我想import应该没有问题。(我也试过import pygame.font,问题依旧) > > > > 用pygame.font.get_default_font()的函数,找到了默认字库是freesansbold.ttf,并把它拷到程序目录下然后打包,但问题还在,不知是否还需要添加什么命令在setup.py中?请yi > > huang指教。 > > > > > > 看到一位仁兄有相似的问题,后来将pygame.font.Font()改成pygame.font.SysFont()从而解决了问题。不过我照做之后,问题仍然悬而未决,并报pygame/sysfont.pyc的错,进入sysfont.py查找,发现其中也是用了pygame.font.Font()的语句。 > > > > 故再次求教,望详。。。再次感谢! > > > > > > > > 2006/6/12, yi huang <yi.codeplayer at gmail.com>: > > > > > > 可以把pygame用的默认(如果你没指定的话)字体拷贝到你程序的目录下,然后一起打包进去。 > > 貌似问过几次了。 > > > > > > On 6/12/06, yi huang <yi.codeplayer at gmail.com > wrote: > > > > > > 把pygame用到的字体包进去。 > > > > > > On 6/12/06, ONE_Fox <onefox.fox at gmail.com > wrote: > > > > > > > > 用到的模块最好都显示地 import 一下 > > > > > > > > _______________________________________________ > > > > python-chinese > > > > Post: send python-chinese at lists.python.cn > > > > Subscribe: send subscribe to python-chinese-request at lists.python.cn > > > > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > > > > > > > > -- > > > 考研还是工作 哎... ! > > > http://codeplayer.blogbus.com/ > > > > > > > > > > > -- > > 考研还是工作 哎... ! > > http://codeplayer.blogbus.com/ > > > > _______________________________________________ > > > > python-chinese > > Post: send python-chinese at lists.python.cn > > Subscribe: send subscribe to python-chinese-request at lists.python.cn > > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > _______________________________________________ > > python-chinese > > Post: send python-chinese at lists.python.cn > > Subscribe: send subscribe to python-chinese-request at lists.python.cn > > Unsubscribe: send unsubscribe to > > python-chinese-request at lists.python.cn > > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > > > > -- > 考研还是工作 哎... ! > http://codeplayer.blogbus.com/ > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060614/933ea15a/attachment.html
2006年06月14日 星期三 14:25
估计是这样的: pygame.font.Font(None, 40)的时候pygame自动在某些路径下找默认字体,偏偏这些搜索路径没有包括应用程序的当前目录。 你可以去研究下代码,看看他到底是如何寻找默认字体的了,搞明白了别忘了回来通知一声了 :) On 6/14/06, Chao Xiong <chaox.maillist at gmail.com> wrote: > > 嗯,好的,谢谢啦,解决了~ > > 写成font = pygame.font.Font('freesansbold.ttf', 40) > 然后把freesansbold.ttf拷到程序目录就行。 > > 可是还有更好的解决办法么~?? > > 还有,为什么写font = pygame.font.Font(None, 40)时,在python环境下可以正常运行,而打包了就不行呢? > > 呵呵,我的问题比较多~~不要嫌麻烦~再谢一次~! > > > 2006/6/14, yi huang <yi.codeplayer at gmail.com>: > > > > 给你看下我是怎么做的吧: > 打包的程序里: > data_files=[("media", [..."media/freesansbold.ttf"....]),] > 使用初始化font的时候显式指定字体的路径: > font = pygame.font.Font('media/freesansbold.ttf', 40) > > > On 6/13/06, Chao Xiong <chaox.maillist at gmail.com > wrote: > > > > > > 很感谢二位的指点。 不过很可惜我还是没有解决这个问题。。。。。 > > > > 因为在python环境下可以正常运行,所以我想import应该没有问题。(我也试过import pygame.font,问题依旧) > > > > 用pygame.font.get_default_font()的函数,找到了默认字库是freesansbold.ttf,并把它拷到程序目录下然后打包,但问题还在,不知是否还需要添加什么命令在setup.py中?请yi > > huang指教。 > > > > > > 看到一位仁兄有相似的问题,后来将pygame.font.Font()改成pygame.font.SysFont()从而解决了问题。不过我照做之后,问题仍然悬而未决,并报pygame/sysfont.pyc的错,进入sysfont.py查找,发现其中也是用了pygame.font.Font()的语句。 > > > > 故再次求教,望详。。。再次感谢! > > > > > > > > 2006/6/12, yi huang <yi.codeplayer at gmail.com>: > > > > > > 可以把pygame用的默认(如果你没指定的话)字体拷贝到你程序的目录下,然后一起打包进去。 > > 貌似问过几次了。 > > > > > > On 6/12/06, yi huang <yi.codeplayer at gmail.com > wrote: > > > > > > 把pygame用到的字体包进去。 > > > > > > On 6/12/06, ONE_Fox <onefox.fox at gmail.com > wrote: > > > > > > > > 用到的模块最好都显示地 import 一下 > > > > > > > > _______________________________________________ > > > > python-chinese > > > > Post: send python-chinese at lists.python.cn > > > > Subscribe: send subscribe to python-chinese-request at lists.python.cn > > > > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > > > > > > > > -- > > > 考研还是工作 哎... ! > > > http://codeplayer.blogbus.com/ > > > > > > > > > > > -- > > 考研还是工作 哎... ! > > http://codeplayer.blogbus.com/ > > > > _______________________________________________ > > > > python-chinese > > Post: send python-chinese at lists.python.cn > > Subscribe: send subscribe to python-chinese-request at lists.python.cn > > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > _______________________________________________ > > python-chinese > > Post: send python-chinese at lists.python.cn > > Subscribe: send subscribe to python-chinese-request at lists.python.cn > > Unsubscribe: send unsubscribe to > > python-chinese-request at lists.python.cn > > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > > > > -- > 考研还是工作 哎... ! > http://codeplayer.blogbus.com/ > > _______________________________________________ > > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -- 考研还是工作 哎... ! http://codeplayer.blogbus.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060614/db84f1b7/attachment-0001.html
2006年06月14日 星期三 14:28
回信时请记着删除引信,相信你也不愿意翻很长到底后发现只有这么一封信. -- 开飞机的舒克 http://www.lvye.org/shuke msn:weizhong at netease.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060614/d98fad5f/attachment.htm
2006年06月14日 星期三 14:30
估计是这样的: pygame.font.Font(None, 40)的时候pygame自动在某些路径下找默认字体,偏偏这些搜索路径没有包括应用程序的当前目录。 你可以去研究下代码,看看他到底是如何寻找默认字体的了,搞明白了别忘了回来通知一声了 :) On 6/14/06, Chao Xiong <chaox.maillist at gmail.com> wrote: > > 嗯,好的,谢谢啦,解决了~ > > 写成font = pygame.font.Font('freesansbold.ttf', 40) > 然后把freesansbold.ttf拷到程序目录就行。 > > 可是还有更好的解决办法么~?? > > 还有,为什么写font = pygame.font.Font(None, 40)时,在python环境下可以正常运行,而打包了就不行呢? > > 呵呵,我的问题比较多~~不要嫌麻烦~再谢一次~! > > > 2006/6/14, yi huang <yi.codeplayer at gmail.com>: > > > > 给你看下我是怎么做的吧: > 打包的程序里: > data_files=[("media", [..."media/freesansbold.ttf"....]),] > 使用初始化font的时候显式指定字体的路径: > font = pygame.font.Font('media/freesansbold.ttf', 40) > > > On 6/13/06, Chao Xiong <chaox.maillist at gmail.com > wrote: > > > > > > 很感谢二位的指点。 不过很可惜我还是没有解决这个问题。。。。。 > > > > 因为在python环境下可以正常运行,所以我想import应该没有问题。(我也试过import pygame.font,问题依旧) > > > > 用pygame.font.get_default_font()的函数,找到了默认字库是freesansbold.ttf,并把它拷到程序目录下然后打包,但问题还在,不知是否还需要添加什么命令在setup.py中?请yi > > huang指教。 > > > > > > 看到一位仁兄有相似的问题,后来将pygame.font.Font()改成pygame.font.SysFont()从而解决了问题。不过我照做之后,问题仍然悬而未决,并报pygame/sysfont.pyc的错,进入sysfont.py查找,发现其中也是用了pygame.font.Font()的语句。 > > > > 故再次求教,望详。。。再次感谢! > > > > > > > > 2006/6/12, yi huang <yi.codeplayer at gmail.com>: > > > > > > 可以把pygame用的默认(如果你没指定的话)字体拷贝到你程序的目录下,然后一起打包进去。 > > 貌似问过几次了。 > > > > > > On 6/12/06, yi huang <yi.codeplayer at gmail.com > wrote: > > > > > > 把pygame用到的字体包进去。 > > > > > > On 6/12/06, ONE_Fox <onefox.fox at gmail.com > wrote: > > > > > > > > 用到的模块最好都显示地 import 一下 > > > > > > > > _______________________________________________ > > > > python-chinese > > > > Post: send python-chinese at lists.python.cn > > > > Subscribe: send subscribe to python-chinese-request at lists.python.cn > > > > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > > > > > > > > -- > > > 考研还是工作 哎... ! > > > http://codeplayer.blogbus.com/ > > > > > > > > > > > -- > > 考研还是工作 哎... ! > > http://codeplayer.blogbus.com/ > > > > _______________________________________________ > > > > python-chinese > > Post: send python-chinese at lists.python.cn > > Subscribe: send subscribe to python-chinese-request at lists.python.cn > > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > _______________________________________________ > > python-chinese > > Post: send python-chinese at lists.python.cn > > Subscribe: send subscribe to python-chinese-request at lists.python.cn > > Unsubscribe: send unsubscribe to > > python-chinese-request at lists.python.cn > > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > > > > -- > 考研还是工作 哎... ! > http://codeplayer.blogbus.com/ > > _______________________________________________ > > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -- 考研还是工作 哎... ! http://codeplayer.blogbus.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060614/67432f0e/attachment.html
2006年06月14日 星期三 14:37
用Gmail还有这个问题? On 6/14/06, 魏忠 <weizhong2004 at gmail.com> wrote: > > 回信时请记着删除引信,相信你也不愿意翻很长到底后发现只有这么一封信. > > -- > 开飞机的舒克 > http://www.lvye.org/shuke > msn:weizhong at netease.com > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -- z33 msn: z33 at 163.com Ajax webnote: http://www.phpboom.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060614/c87d247f/attachment.html
2006年06月14日 星期三 14:47
On 6/14/06, z33 <newbdez33 at gmail.com> wrote: > 用Gmail还有这个问题? > > > On 6/14/06, 魏忠 <weizhong2004 at gmail.com> wrote: > > > > 回信时请记着删除引信,相信你也不愿意翻很长到底后发现只有这么一封信. > 这是一种礼节,而且也的确有这个问题。 -- I like python! My Blog: http://www.donews.net/limodou My Django Site: http://www.djangocn.org NewEdit Maillist: http://groups.google.com/group/NewEdit
2006年06月14日 星期三 14:55
还是礼节? 我就不喜欢删除引信, 到收信特别多的时候,或者很长时间以前的信, 如果没有引信,很可能会不知道这封信在说些什么。 而且我所在的日本公司也要求回信必须有引信。 :( On 6/14/06, limodou <limodou at gmail.com> wrote: > > On 6/14/06, z33 <newbdez33 at gmail.com> wrote: > > 用Gmail还有这个问题? > > > > > > On 6/14/06, 魏忠 <weizhong2004 at gmail.com> wrote: > > > > > > > 回信时请记着删除引信,相信你也不愿意翻很长到底后发现只有这么一封信. > > > 这是一种礼节,而且也的确有这个问题。 > > -- > I like python! > My Blog: http://www.donews.net/limodou > My Django Site: http://www.djangocn.org > NewEdit Maillist: http://groups.google.com/group/NewEdit > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -- z33 msn: z33 at 163.com Ajax webnote: http://www.phpboom.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060614/adebc31a/attachment.htm
2006年06月14日 星期三 15:39
On 6/14/06, z33 <newbdez33 at gmail.com> wrote: > 还是礼节? > > 我就不喜欢删除引信, > 到收信特别多的时候,或者很长时间以前的信, > 如果没有引信,很可能会不知道这封信在说些什么。 > > 而且我所在的日本公司也要求回信必须有引信。 > > :( > 当然不是删得干干净净了,而是与回复有关的留着,一些没有用的签名之类的当然最好删除了。建议你读一下: http://www.woodpecker.org.cn:9081/classes/050730-CPUG/usMaillist/ http://wiki.woodpecker.org.cn/moin/QiangningHong/2005-07-29 这上面讲得详细。不过能做到的并不多。 -- I like python! My Blog: http://www.donews.net/limodou My Django Site: http://www.djangocn.org NewEdit Maillist: http://groups.google.com/group/NewEdit
2006年06月14日 星期三 15:40
在 gmail 中,你的回复和原来的邮件是作为一个对话存储的,要看原信相当容易,所以不存在删除引信就不知道原文内容的问题 -- 开飞机的舒克 http://www.lvye.org/shuke msn:weizhong at netease.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060614/d7753419/attachment.html
2006年06月14日 星期三 15:49
是我误解了,请原谅,呵呵。 这次明白了,PPT写的很好!谢谢。 On 6/14/06, limodou <limodou at gmail.com> wrote: > > On 6/14/06, z33 <newbdez33 at gmail.com> wrote: > > 还是礼节? > > > > 我就不喜欢删除引信, > > 到收信特别多的时候,或者很长时间以前的信, > > 如果没有引信,很可能会不知道这封信在说些什么。 > > > > 而且我所在的日本公司也要求回信必须有引信。 > > > > :( > > > 当然不是删得干干净净了,而是与回复有关的留着,一些没有用的签名之类的当然最好删除了。建议你读一下: > > http://www.woodpecker.org.cn:9081/classes/050730-CPUG/usMaillist/ > http://wiki.woodpecker.org.cn/moin/QiangningHong/2005-07-29 > > 这上面讲得详细。不过能做到的并不多。 > > > -- > I like python! > My Blog: http://www.donews.net/limodou > My Django Site: http://www.djangocn.org > NewEdit Maillist: http://groups.google.com/group/NewEdit > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -- z33 msn: z33 at 163.com Ajax webnote: http://www.phpboom.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060614/ef87a2c9/attachment.htm
2006年06月14日 星期三 16:17
On 6/14/06, z33 <newbdez33 at gmail.com> wrote: > 是我误解了,请原谅,呵呵。 > 这次明白了,PPT写的很好!谢谢。 > 这可不是恶心的PPT! 是S5 http://wiki.woodpecker.org.cn/moin/S5 纯XHTML 幻灯展示系统! > > > > On 6/14/06, limodou <limodou at gmail.com> wrote: > > > On 6/14/06, z33 <newbdez33 at gmail.com> wrote: > > 还是礼节? > > > > 我就不喜欢删除引信, > > 到收信特别多的时候,或者很长时间以前的信, > > 如果没有引信,很可能会不知道这封信在说些什么。 > > > > 而且我所在的日本公司也要求回信必须有引信。 > > > > :( > > > 当然不是删得干干净净了,而是与回复有关的留着,一些没有用的签名之类的当然最好删除了。建议你读一下: > > http://www.woodpecker.org.cn:9081/classes/050730-CPUG/usMaillist/ > http://wiki.woodpecker.org.cn/moin/QiangningHong/2005-07-29 > > 这上面讲得详细。不过能做到的并不多。 > > > -- > I like python! > My Blog: http://www.donews.net/limodou > My Django Site: http://www.djangocn.org > NewEdit Maillist: http://groups.google.com/group/NewEdit > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to > python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to > python-chinese-request at lists.python.cn > Detail Info: > http://python.cn/mailman/listinfo/python-chinese > > > > > > -- > z33 > msn: z33 at 163.com > > Ajax webnote: > http://www.phpboom.com > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to > python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to > python-chinese-request at lists.python.cn > Detail Info: > http://python.cn/mailman/listinfo/python-chinese > > -- """Time is unimportant, only life important! blogging : http://blog.zoomquiet.org/pyblosxom/ wiki enter: http://wiki.woodpecker.org.cn/moin/ZoomQuiet in douban: http://www.douban.com/people/zoomq/ """
2006年06月14日 星期三 20:23
嗯,查了一下,在font.c里已经规定了font_defaultname = "freesansbold.ttf",然后用font_resource的函数来打开default font。这个函数调用了pygame.pkgdata的模块,里面返回了当前模块(程序)的系统路径名下的文件(好像是通过__name__来找的)。 因此,在python环境下,它可以找到python安装目录下的相关文件("freesansbold.ttf")。但是打包之后,没有当前模块了,于是这个路径也找不到了,所以用pygame.font.Font(None, 40)虽然知道default font 是freesansbold.ttf,但找不到这个文件,所以报错。 应该是这么理解的吧。。。。希望是对的,呵呵 另外,看了后面几位的回复,很抱歉没有删引信,下次一定注意了~~(这次删干净了) 不过后面几位老大显然是离题了,也没有标明[离题]哦~呵呵 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060614/da66510f/attachment.htm
2006年06月15日 星期四 08:28
On 6/14/06, Chao Xiong <chaox.maillist at gmail.com> wrote: > > 嗯,查了一下,在font.c里已经规定了font_defaultname = > "freesansbold.ttf",然后用font_resource的函数来打开default > font。这个函数调用了pygame.pkgdata的模块,里面返回了当前模块(程序)的系统路径名下的文件(好像是通过__name__来找的)。 > > 因此,在python环境下,它可以找到python安装目录下的相关文件("freesansbold.ttf")。但是打包之后,没有当前模块了,于是这个路径也找不到了,所以用pygame.font.Font(None, > 40)虽然知道default font 是freesansbold.ttf,但找不到这个文件,所以报错。 > > 应该是这么理解的吧。。。。希望是对的,呵呵 > > 另外,看了后面几位的回复,很抱歉没有删引信,下次一定注意了~~(这次删干净了) > 不过后面几位老大显然是离题了,也没有标明[离题]哦~呵呵 http://www.woodpecker.org.cn:9081/classes/050730-CPUG/usMaillist/ 注意列表推荐的礼节 引文并非全部清除为好的 > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to > python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to > python-chinese-request at lists.python.cn > Detail Info: > http://python.cn/mailman/listinfo/python-chinese > > -- """Time is unimportant, only life important! blogging : http://blog.zoomquiet.org/pyblosxom/ wiki enter: http://wiki.woodpecker.org.cn/moin/ZoomQuiet in douban: http://www.douban.com/people/zoomq/ """
2006年06月15日 星期四 11:53
在 06-6-14,Chao Xiong<chaox.maillist at gmail.com> 写道: > 另外,看了后面几位的回复,很抱歉没有删引信,下次一定注意了~~(这次删干净了) 也不用全删了,自己编辑一下,保留相关部分就好,呵呵,离题了离题了…… -- 云电清华同方小民工
Zeuux © 2025
京ICP备05028076号