python进阶必读汇总
前言昨天翻到了一本在github开源的书: IntermediatePython. 就有了此文,梳理了一下一些之前翻到的对python语言细节点的答案, 博文等.
英文的superPython’s super() consideredsuper!rhettinger是python核心开发者. 这篇博文也是讲super最好最深入的博文了.
装饰器[Understanding PythonDecorators](http://stackoverflow.com/questions/739654/how-can-i-make-a-chain-of-function-decorators-in-python/1594484#1594484)如果你还没有经常性的用装饰器, 你就要思考你的工作需求是不是的太简单了, 或者该考虑下这种AOP模式的开发的作用了
元类[What is a metaclass inPython?](http://stackoverflow.com/questions/100003/what-is-a-metaclass-in-python/6581949#6581949)Metaclasses Demystified元类是python高阶语法. 合理的使用可以减少大量重复性的代码.
防御性编程中的LBYL和EAFP[Try/catch or validation forspeed?](http://stackoverflow.com/questions/5589532/try-catch-or-validation-for-speed/)这其实就是事先检查和异常处理2个方式的讨论
new 和 init[Python (and Python C API): new versusinit](http://stackoverflow.com/questions/48
...