XiaoKL

2015年4月23日

Python.tornado.2.tornado.options

摘要: 记录Tornado-4.0.2源码的阅读,学习,分析options.py1. imports 部分1.1 __future__1 from __future__ import absolute_import, division, print_function, with_statementfutur... 阅读全文

posted @ 2015-04-23 16:18 XiaoKL 阅读(538) 评论(0) 推荐(0) 编辑

XiaoKL学Python(D)argparse

摘要: argparse module 该文以Python 2为基础。 1. argparse简介 argparse 使得编写用户友好的命令行接口更简单。 argparse 知道如何解析sys.argv。 argparse 模块自动生成 “帮助” 信息和 “使用” 信息。 当用户使用了错误的命令行参数,ar 阅读全文

posted @ 2015-04-23 11:12 XiaoKL 阅读(292) 评论(0) 推荐(0) 编辑

XiaoKL学Python(E)Generator Expressions

摘要: 在 阅读 https://github.com/vitonzhang/objc_dep 中的 objc_dep.py 时遇到: 在Ref[1] PEP中,这种语法称为 Generator Expressions。 例如: 等价于: Reference 1. PEP 289 - Generator E 阅读全文

posted @ 2015-04-23 11:10 XiaoKL 阅读(224) 评论(0) 推荐(0) 编辑

导航