# HG changeset patch # User Oleksandr Gavenko # Date 1317245024 -10800 # Node ID 49a5602070a9ee7497538fd86c8bdbe934de1ab4 # Parent 719b12ec01c87149b6331f167eea97f44cb4f295 Uninstall python modules. diff -r 719b12ec01c8 -r 49a5602070a9 python.rst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python.rst Thu Sep 29 00:23:44 2011 +0300 @@ -0,0 +1,40 @@ +.. -*- coding: utf-8 -*- + +======== + Python +======== +.. contents:: + +Licence and history of Python. +============================== + + http://docs.python.org/dev/license.htm + +Byte compile .py and check for errors. +====================================== +:: + + $ python -m compileall dir + +Uninstall python modules. +========================= + +Install again and save list of installed files:: + + $ python setup.py install --record files.txt + $ rm `cat files.txt` + +Code analyzers and style checkers. +================================== + +Pylint. +------- + + http://www.logilab.org/857 + http://pypi.python.org/pypi/pylint + +PyChecker. +---------- + + http://pychecker.sourceforge.net/ +