一个异想天开的coder
发布时间:2014-05-06 00:47:39
进入python安装目录下的Lib目录,打开mimetypes.py文件在default_encoding = sys.getdefaultencoding()前添加点击(此处)折叠或打开if sys.getdefaultencoding() != 'gbk': reload(sys) .........【阅读全文】
发布时间:2014-02-21 09:52:59
今天遇到logging handler指向rsyslog出现多条日志之间没有换行符,最后发现在每条日志的最后带上一个空白符(空格、tab)问题就不会出现了。为此还看了看loging.handlers.SysLogHandler的实现,发现每条日志的最后都会加上\000。但是还是没有解析为什么出现上面的问题,看来这个需要看rsyslog的实现才行。.........【阅读全文】
发布时间:2013-12-11 13:13:40
参考:http://www.tsheffler.com/blog/?p=377点击(此处)折叠或打开# -*- coding: utf-8 -*-''' This module is used to fork the current process into a daemon. Almost none of this is necess.........【阅读全文】