
Python
江枫戏渔火
include
展开
-
Python从2.5升级至2.6 以及wsgi安装
Python升级过程 tar -zxvf Python-2.6.6.tgz./configure --prefix=/usr/local/python2.6 --with-threads --enable-shared --enable-universalsdk 安装至/usr/local/python2.6下,其中--enable-shared 是为了后续安装wsgi时的依赖。...原创 2013-05-27 10:34:54 · 250 阅读 · 0 评论 -
PyInstaller2.0 使用
各版本的PyInstaller的使用方式大不相同。PyInstaller2.0英文手册:http://www.pyinstaller.org/export/v2.0/project/doc/Manual.pdf?format=raw在下载的PyInstaller文件中有PDF使用手册。 Windwos中使用PyInstaller,需要pywin32http://sour...原创 2013-07-11 14:16:58 · 284 阅读 · 0 评论 -
Python super()
super(type[, object-or-type])Return a proxy object that delegates method calls to a parent or sibling class of type. This is useful for accessing inherited methods that have been overridden in ...原创 2013-08-14 23:18:32 · 179 阅读 · 0 评论