摘要: /* var N = function () { this.keys = []; this.w = {}; this.m = {} }; N["prototype"].set = function (a, b, c) { this.keys["push"](a); c ? thi... 阅读全文
posted @ 2014-10-30 15:36 张保维 阅读(228) 评论(0) 推荐(0) 编辑
摘要: __author__ = 'Administrator' import codecs def blocks(file, size=65536): while True: b = file.read(size) if not b: break yield b with codecs. open('h:/iis/u_ex141026.... 阅读全文
posted @ 2014-10-30 10:44 张保维 阅读(213) 评论(0) 推荐(0) 编辑